私のプレフィックスファイルにはこれがあります:
#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];
一部のエンティティでは速記を使用でき、他のエンティティでは使用できないのはなぜですか?