Posts

Post marked as solved
10 Replies
Sorry for the late answer.You were right. I just had to force it to full screen in ViewDidLoad. I had tried all possible combinations except for this, and thus I thought else was wrong. Now it works perfectly as it did before. Thank you for your time and answers. They have been helpful. I will mark your answer as the correct one.I declare my navigation in code, if that is what you are asking about.
Post marked as solved
10 Replies
I get where you are coming from, but that is exclusively for when you use PresentViewController on a navigation Controller, which is used to display a Modal. What we use is the PushViewController method on NavigationController, and that is not a modal and therefore is per default in fullscreen. Which is why im confused as to why the ViewDidAppear/will isnt getting called, since its a different way to navigate.