开发者

exc_bad_access from object returned from NSKeyedUnarchiver

I am having trouble loading from saved data an instance of a custom class that conforms to the NSCoding protocol. My class has a UIImage property and when I assign a new UIImage to it the program crashes with an exc_bad_access.

In the view controller I declare my object like so:

@interface SomeViewController : UIViewController  {
    IBOutlet UIImageView *imageView;
    SomeClass *myObject;
 }

@property (nonatomic, retain) SomeClass *myObject;
@property (nonatomic, retain) IBOutlet UIImageView *imageView;

Then in the .m file it is used as following:

@synthesize myObject;
@synthesize imageView;

-(void)viewDidLoad{
  myObject = [NSKeyedU开发者_StackOverflow社区narchiver unarchiveObjectWithFile:someDataPath];
  imageView.image = myObject.image;
}

So far so good. But later I pick a new image and try to set it to the "image" property of myObject, and this throws an exc_bad_access

-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
  [picker dismissModalViewControllerAnimated:YES];
  UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
  [imageView setImage:image];
   myObject.image = image;
}

As far as I can tell from single-stepping through the code, it is the last line which is causing the exc_bad_access. What am I doing wrong?


You have to retain myObject:

self.myObject = [NSKeyedUnarchiver unarchiveObjectWithFile:someDataPath];
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜