I set up a notification observer in my view controller's init
method like so:
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(saveState)
name:UIApplicationWillResignActiveNotification
object:nil];
Where is the best place to call removeObserver:name:object:
for this notification. I'm currently calling it in my dealloc
method, but wanted to know if that might cause problems.