I use navgation and tabbar to achieve page jump generally we are through the Pushviewcontroller and Presentviewcontroller to achieve the page jump first look at the navgation push a page [NAVVC PUSHVIEWCONTROLLER:SAFARIVC Animated:yes];Code Execution Effect [NAVVC PRESENTVIEWCONTROLLER:SAFARIVC Animated:yes Completion:nil];Code Execution EffectAs can be seen, the use of navigation push out of the interface is reserved navigation, and the use of present out of the VC interface is not navigation; Take a look at the following TarBar [TABBARVC PRESENTVIEWCONTROLLER:SAFARIVC animated:yes Completion:nil];The view that uses the Tabbar present also does not have the navigation bar or the navigation controller (the picture display navigation Controller is Safar)Tabbar cannot use push-out views, which means that push can only be used under navigation, and Presen can be invoked on any of the view controllers
The difference between Pushviewcontroller and Presentviewcontroller