I have this problem when I simulate my app, its not an error or a warning but it appears in my console, has anyone ever experienced this before?
Ensure that you do not forget to in -viewWillAppear, -viewDidAppear, -viewDidLoad, -viewWillDisappear, -viewDidDisappear to call proper super method in your overload of that methods. For example in my case I mismatched method name like this:
-(void)viewDidAppear
{
[super viewDidDisappear];
//some code staff
..
}
notice that appear and disappear methods are mismatched