I have an observer of NSNotification which is called twice. I do not know what to do with it.
NSNotification
I googled it but no solution found.
[[NSNo
Try to removeObserver in viewWillDisappear method :
-(void)viewWillDisappear:(BOOL)animated{ [[NSNotificationCenter defaultCenter] removeObserver:self name:@"startAnimating" object:nil]; }