【发布时间】:2013-03-08 01:13:27
【问题描述】:
在我的前缀文件中我有这个:
#define MR_SHORTHAND
#import "CoreData+MagicalRecord.h"
//this causes an unrecognized selector sent to instance crash
Apple *apple = [Face findFirstByAttribute:@"appleId" withValue:value];
//this works fine
Apple *apple = [Face MR_findFirstByAttribute:@"appleId" withValue:value];
//however this also works fine:
Orange *orange = [Face findFirstByAttribute:@"orangeId" withValue:value];
为什么我可以对某些实体使用速记而不对其他实体使用速记?
【问题讨论】:
-
我遇到了完全相同的问题。不过才刚刚开始。很奇怪,你得到答案了吗?
标签: ios core-data nsmanagedobject magicalrecord