我有一个 NSObject 类的实例,它应该解析 XML 并保存 NSManagedObjects,一切正常。但我需要在其中接收 NSManagedObjectContextDidSaveNotification 以合并 CoreData 上下文。
问题是我的实例在收到上述通知之前就被释放了。
如何防止我的实例被更快地释放?
这是我调用我的实例的时候
// in my ViewController implementation
WSNoticia *wsNoticia = [WSNoticia new]; // __strong by default right?
这是 WSNoticia 的实现:
- (id)init {
self = [ super 初始化];
如果( self ){
[ self 解析新闻];
}
回归 self ;
}
- (无效)dealloc {
//在 mergeChanges: 或 updateContext: 之前调用
}
#pragma mark - 私有(private)方法
- (void)parseNews {
//将上下文保存在另一个线程中
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context = [[NSManagedObjectContext alloc] init];
[上下文 setUndoManager:nil];//性能优势
[上下文 setPersistentStoreCoordinator:[appDelegate persistentStoreCoordinator]];
[[NSNotificationCenter defaultCenter] addObserver:self 选择器selector(mergeChanges name:NSManagedObjectContextDidSaveNotification object:context];
NSBlockOperation *blockOperation = [NSBlockOperation blockOperationWithBlock:^{
//取东西
}];
[blockOperation setCompletionBlock:^{
//更新和保存东西
//这里调用了 NSManagedObjectContextDidSaveNotification(通过 [context save:nil];
}];
//将操作添加到队列
NSOperationQueue *operationQueue = [NSOperationQueue 新];
[操作队列 addOperation:blockOperation];
}
//不会被调用
- (void)updateContextNSNotification *)notification {
NSManagedObjectContext *mainContext = [self managedObjectContext];
[mainContext mergeChangesFromContextDidSaveNotification:notification];
[[NSNotificationCenter defaultCenter] postNotificationName:kNotificationNameNoticiasParsed object:self];
}
#pragma mark - NSNotificationCenter
//不会被调用
- (void)mergeChangesNSNotification *)notification {
[[NSNotificationCenter defaultCenter] removeObserver:self];
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
NSManagedObjectContext *mainContext = [appDelegate managedObjectContext];
if ([通知对象] == mainContext) {
//主上下文保存,无需执行合并
返回;
}
[self performSelectorOnMainThreadselector(updateContext withObject:notification waitUntilDone:YES];
}
默认情况下会应用强生命周期限定符,但变量的生命周期仅适用于声明它的方法。
如果您将 wsNoticia 声明为实例变量,则应该没问题。
关于objective-c - 使类的实例在内存中停留更长时间(在 ARC 下),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8509715/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |