difference between presentViewController and UINavigationController?

前端 未结 4 1419
忘掉有多难
忘掉有多难 2020-12-01 04:35

Please tell the difference between presentViewController and UiNavigationController? Could I use presentViewController instead of

相关标签:
4条回答
  • 2020-12-01 04:57

    A UINavigationController is a subclass of UIViewController that manages a stack of view controllers and adds a back button etc.

    presentViewController is a method of the UIViewController class you use to present a modal view controller.

    0 讨论(0)
  • 2020-12-01 05:09

    presentViewController offers a mechanism to display a so-called modal view controller; i.e., a view controller that will take full control of your UI by being superimposed on top of a presenting controller.

    UINavigationController offers a much more flexible mechanism where you can push a new controller, and later pop it, so to go back to the previous one, in a ordered way. Imagine that controllers in a navigation controller will just build a sequence from left to right.

    I think that presentViewController is most suitable for use with just one view controller being presented at a time. You can surely use it to stack more view controllers one on top of the other (and thus sort of "mimic" a poor-man's navigation controller), but my bet is you will quickly find something not working as you expected.

    Specifically, an example of such limitation is the following: when you dismiss a modal view controller (in order to "close" it), all of your modally presented view controllers (from the same presenting controller) will also be dismissed at once. So you simply will not be able to implement a "go back"/navigation like functionality.

    So, it depends on what you are trying to do.

    0 讨论(0)
  • 2020-12-01 05:10

    The UINavigationController maintains a navigation stack for you. You are then able to navigate through hierarchical content.

    http://developer.apple.com/library/ios/#documentation/uikit/reference/UINavigationController_Class/Reference/Reference.html

    If you use UIViewControllers presentViewController method you are basically just replacing the view controller. no navigation stack is maintained for you.

    0 讨论(0)
  • 2020-12-01 05:14

    UINavigationController is a class, presentViewController is an instance method of UIViewController (iOS 5 + ), of which UINavigationController is a subclass.

    pushViewController is a comparable method to presentViewController. It is an instance method of UINavigationController, for iOS 2 +

    0 讨论(0)
提交回复
热议问题