V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
DavidHu
V2EX  ›  iDev

把数组存进 Core Data 遇到的问题

  •  
  •   DavidHu · 2015-05-26 21:26:43 +08:00 · 1801 次点击
    这是一个创建于 3259 天前的主题,其中的信息可能已经有所发展或是发生改变。

    [MagicalRecord saveWithBlock:^(NSManagedObjectContext *localContext) {
    Course *course = [Course MR_createInContext:localContext];

    course.classesName = classesName;
                    course.teacherName = teacherName;
                    course.classroom = @"体育馆";
                    course.startTime = startTime;
                    course.weekday = weekday;
                    course.weekNumber = [NSKeyedArchiver archivedDataWithRootObject:allweekNumber];
                    course.howLong = howLong;
    
                } completion:^(BOOL success, NSError *error) {
                    NSLog(@"SUCCESS: %d, with ERROR: %@", success, error);
                }];
    

    这里是代码,里面NSKeyedArchiver那行感觉有问题,因为数据肯定都对,但是存的时候有时候存不上会在这句崩溃,有的时候是能存上,但是读不出来。求教各位

    1 条回复    2015-05-26 21:27:59 +08:00
    DavidHu
        1
    DavidHu  
    OP
       2015-05-26 21:27:59 +08:00
    会报一个EXC_BAD_ACCESS(code:1 ....的错
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   884 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 20:31 · PVG 04:31 · LAX 13:31 · JFK 16:31
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.