6
在AppDelegate中的didFinishLaunchingWithOptions
:如果在AppDelegate中添加通知的觀察者,是否需要打擾刪除它?
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(contextChanged:)
name:NSManagedObjectContextDidSaveNotification
object:nil];
這是這樣我就可以更改合併到其他線程的數據。
問:我是否需要打擾在applicationWillResignActive
或applicationWillTerminate
中刪除此聽衆?這似乎並不重要。我想我問是否在主循環中有這樣的聽衆是正常的,永遠不會被刪除。