我需要创建一个 NSManagedObject 子类的新实例,然后我打算使用 POST
- (void)postObject:(id<NSObject>)object usingBlock:(RKObjectLoaderBlock)block
如何创建对象?我使用这种方法吗?:
+ (id)insertNewObjectForEntityForName:(NSString *)entityName inManagedObjectContext:(NSManagedObjectContext *)context;
如果我应该使用insertNewObjectForEntityName
,我该如何获得context
?