I have an app based around a core data model and I am loading a data point back into a view controller. Here is the excpetion that I am getting:
-[__NSCFString size]: unrecognized selector sent to instance 0xc530dd0
With exception breakpoints on, I have found that this line is causing the exception:
[self.MyImage setImage:[self.device valueForKey:@"imagename"]];
This is quite a weird error, as this line works:
[self.StepItTitle setText:[self.device valueForKey:@"title"]];
Why is it crashing? What do I need to fix to prevent this from happening?