首次尝试
LVUser* user = [LVUser MR_createEntity];
[user signInWithDelegete:self];
第二次尝试
LVUser* user = [LVUser MR_createInContext:[RKObjectManager sharedManager].managedObjectStore.mainQueueManagedObjectContext];
[user signInWithDelegete:self];
第三次尝试
LVUser* user = [[NSManagedObject alloc] initWithEntity: [LVUser MR_entityDescription] insertIntoManagedObjectContext:[RKObjectManager sharedManager].managedObjectStore.mainQueueManagedObjectContext];
[user signInWithDelegete:self];
最后一个例子给了我这个警告
Incompatible pointer types initializing 'LVUser *' with an expression of type 'NSManagedObject *'
我不知道我做错了什么,它们确实是兼容的指针类型。
我尝试删除Xcode Derived Data并清理&建立。