difference between presentViewController and UINavigationController?

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

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

4条回答
  •  無奈伤痛
    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.

提交回复
热议问题