I am using UINavigationController and getting intermittent display issues when going back, popping and pushing view controllers. Sometimes the nav bar will show the current and previous view's nav bar overlapped buttons and text, sometimes the view will change but the nav bar doesn't, sometimes the nav bar changes, but the view doesn't.
I'm doing nothing fancy, usually using using a left "back" button, and doing pushViewController.
I find that if I remove objects from the table in the view, this happens more. Any ideas?
- (void)viewDidDisappear:(BOOL)animated { //zzz sometimes back doesn't go back[aValues removeAllObjects]; [super viewDidDisappear:animated]; }