One of the basic layout frameworks commonly used when developing apps is tabbar+navigation, which is the Tabbar sub-module below, and then use the navigation bar in each module to drill down into each interface.
Sometimes we need to jump to some interface to hide the tabbar below, how to do it, very simple:
Enter an interface nextviewcontroller *NEXTVC = [[Typesupplierviewcontroller alloc] init]; Depending on the type of click, set the category attribute nextvc.hidesbottombarwhenpushed=yes;//enter after hiding Tabbar [Self.navigationcontroller PUSHVIEWCONTROLLER:NEXTVC Animated:yes]; self.hidesbottombarwhenpushed = no;//is displayed when exiting Tabbar
This is OK, in fact the last line does not work.
The bottombar here is not just for Tabbar, but for the rest of the bar. But generally used is still tabbar.
iOS entry screen hides below Tabbar bar