1

I am using ECSlidingViewController for navigation but I don't believe this is the cause of my problem. Below is an example of my problem.


enter image description here


I have tried using viewDidLayoutSubviews to fix this and I have changed the settings for navigationBar translucency to NO. I thought with proper constraints in my view that auto layout would handle something like this. Does anyone have any suggestions?

jmr1706
  • 239
  • 2
  • 13
  • I am getting same error like this did you found any solution for this ?? – Leena Aug 31 '14 at 09:28
  • As of right now I don't have any firm solution. I may try persisting the view controller when I segue back to the main menu. It seems that the error only happens after a segue back to the main menu view. I think the issue maybe there. – jmr1706 Sep 02 '14 at 15:53

1 Answers1

0

In viewDidLoad, add:

[self.navigationController setNavigationBarHidden:YES animated:NO];
[self.navigationController setNavigationBarHidden:NO animated:NO];
Erich
  • 2,509
  • 2
  • 21
  • 24