This error occurs when using NSNotificationCenter
You registered an observer notification for an object that was released and did not delete the observer. Therefore, when he tries to call the selector, it will work.
If you use any ViewController, you can add
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"Notification" object:nil];
at viewWillDisappear
if it is not a ViewController, you can use -(void) deallocObserver to unregister.
, . , , .
.
!