vote up 0 vote down star
1

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]; }
flag
The code you've provided doesn't give enough context to help you. what is 'aValues' and what does it contain? You say you're not doing anything fancy, but pushing and popping view controllers in the Apple proscribed way won't cause what you're describing. – Matt Long Oct 9 at 4:11
NSMutableArray *aValues; It is an array of objects that we use as data for a UITableView in the view. The view consists of a single section table and 3 UIButtons, some UILabels, and an UIImageView. – Jack Oct 13 at 20:11

1 Answer

vote up 0 vote down

I had a similar problem.

Take a look at the question if you're interested.

The short answer for me was that I had created a buggy pop method in a private category for NSMutableArray. UINavigationBar must also add a pop method via a private category. Mine was winning so the views weren't getting popped.

link|flag
Thanks, I will try to do some logging to get more details. I am using private categories to hide methods from other classes (general code, not overriding any pop method). I don't understand what you mean by needing to add a pop method for UINavBar; aren't the UINavigationController's own pop methods good enough? – Jack Oct 13 at 20:19
In my case i had added a pop method to NSMutableArray (via a category). It wasn't popping (it was returning the item at the top of the stack but not removing it). This was causing the buggy behaviour. – Kevin Oct 14 at 3:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.