在我的前缀文件中,我有这个:
#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];
为什么我可以对某些实体使用速记而不对其他实体使用速记?