如何为子类 NSManagedObject 正确实现自定义初始化程序
Posted
技术标签:
【中文标题】如何为子类 NSManagedObject 正确实现自定义初始化程序【英文标题】:How to correctly implement a custom initializer for a subclassed NSManagedObject 【发布时间】:2011-06-01 05:54:43 【问题描述】:我想知道创建我自己的子类 NSManagedObject 类的初始化程序的正确方法是什么。
目前我正在这样初始化:
-(id)initWithXML:(TBXMLElement *)videoXML
// Setup the environment for dealing with Core Data and managed objects
HenryHubAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context = [appDelegate managedObjectContext];
NSEntityDescription *entityHubPieceVideo = [NSEntityDescription entityForName:@"HubPieceVideo"
inManagedObjectContext:context];
self = [[HubPieceVideo alloc] initWithEntity:entityHubPieceVideo insertIntoManagedObjectContext:context];
// do stuff and then save
NSError *error;
if(![context save:&error])
NSLog(@"HubPiece video save context error: %@ %@", error, [error userInfo]);
好像some 其他also 这样做。
【问题讨论】:
【参考方案1】:刚发现NSManagedObject reference 说:
如果你实例化一个托管对象 直接,您必须调用指定的 初始化器 (initWithEntity:insertIntoManagedObjectContext:)。
【讨论】:
以上是关于如何为子类 NSManagedObject 正确实现自定义初始化程序的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Swift 中为 iOS 10 和 iOS 9.3 初始化 NSManagedObject 子类
如何在Swift中初始化iOS 10和iOS 9.3的NSManagedObject子类