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 (Cocoa-dev@lists.apple.com) 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: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com