iOS 7 - Overriding NSNavigationController
iOS 7 - Overriding NSNavigationController
- Subject: iOS 7 - Overriding NSNavigationController
- From: Dave <email@hidden>
- Date: Fri, 20 Sep 2013 10:00:33 +0100
Hi,
I've been trying to figure out why the App I am working looks really awful under iOS 7 and have found the main culprit. It tuns out that the Apps Navigation Controller uses a subclass of NSNavigationController and overrides "wantsFullScreenLayout" which always returns NO, e.g.
-(BOOL) wantsFullScreenLayout
{
return NO; //Never Allow Fullscreen
}
If I remove this, the apps looks a lot better most places BUT some of the ViewControllers/Views don't look at all right now! I'm wondering what effect the original engineer was getting by forcing wantsFullScreenLayout to be always NO?
Thanks a lot
Dave
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden