Questions tagged [uinavigationcontroller]

The UINavigationController class implements a specialized iOS view controller that manages the navigation of hierarchical content.

This class is not intended for subclassing. Instead, you use instances of it as-is in situations where you want your application’s user interface to reflect the hierarchical nature of your content. This navigation interface makes it possible to present your data efficiently and also makes it easier for the user to navigate that content.

The screens presented by a navigation interface typically mimic the hierarchical organization of your data. At each level of the hierarchy, you provide an appropriate screen (managed by a custom view controller) to display the content at that level.

Sample of use

References:

UINavigationController Class Reference

11391 questions
3
votes
2 answers

UINavigationController's navigation bar wont shrink when in Landscape mode

My navigation controller's navigation bar won't change the height when rotated to landscape. see it stays at 44 pixels instead of 34 i think. What do i do to fix this?
Daniel Node.js
  • 6,734
  • 9
  • 35
  • 57
3
votes
2 answers

Pop to the root view controller when the navigation bar's built in back button is pressed

Whenever the back button is pressed on my top view controller I want to go back to a specific view controller that is not the previous view controller. I was hoping there was a way to override the functionality of the back button in some way.…
mikew
  • 347
  • 6
  • 12
3
votes
1 answer

Is it possible to push 2 separate instances of a UIViewController on a UINavigationContoller stack

I have a generic UIViewController which has multiple uses. It can be instantiated for 6 different ways as it is designed to be very generic. Let us call this multipurpose viewcontroller as MultiPurposeViewController. Type1VC =…
as diu
  • 1,010
  • 15
  • 31
3
votes
2 answers

How to create an UIViewController with UINavigationController with Interface Builder?

In my iOS application, I want to provide a settings-view. "presentModalViewController" works very well: ViewSettings *controller = [[ViewSettings alloc] initWithNibName:@"ViewSettings" bundle:nil]; UINavigationController *navController =…
Manni
  • 11,108
  • 15
  • 49
  • 67
3
votes
1 answer

Stopping video playing in webview, navigation controller

I have built a navigation controller that on the final page displays a video relating to previous choices. This part works fine. The video is embed from youtube onto a webpage and displayed via a webview.