I'm working on an app that uses UINavigationController & T开发者_如何学GoabBarController.
When I look in the NIB file, I see that the "view" for a section of the TabBarController is added below the UINavigationController & above the Tab itself.Picture attached:
How can I add that view behind the UINavigationController & behind TabBarController?
I'm trying to make it go full screen. I'm able to hide the UINavigationController & TabBarController but the size of the view just stays the same.Thank you,
TeeUse UIViewController
s wantsFullscreen
property.
@property(nonatomic, assign) BOOL wantsFullScreenLayout;
精彩评论