Re: iOS 7 - Overriding NSNavigationController

2013-09-25 Thread David Duncan
On Sep 21, 2013, at 5:14 AM, Dave d...@looktowindward.com wrote: On 20 Sep 2013, at 20:41, David Duncan david.dun...@apple.com wrote: If you are building with the iOS 7 SDK, wantsFullScreenLayout should not be consulted for your UI layout at all by the framework. The only thing I can

Re: iOS 7 - Overriding NSNavigationController

2013-09-25 Thread Dave
On 25 Sep 2013, at 17:44, David Duncan david.dun...@apple.com wrote: On Sep 21, 2013, at 5:14 AM, Dave d...@looktowindward.com wrote: On 20 Sep 2013, at 20:41, David Duncan david.dun...@apple.com wrote: If you are building with the iOS 7 SDK, wantsFullScreenLayout should not be

Re: iOS 7 - Overriding NSNavigationController

2013-09-21 Thread Dave
On 20 Sep 2013, at 20:41, David Duncan david.dun...@apple.com wrote: If you are building with the iOS 7 SDK, wantsFullScreenLayout should not be consulted for your UI layout at all by the framework. The only thing I can imagine the original engineer wanted was to avoid having to set the

iOS 7 - Overriding NSNavigationController

2013-09-20 Thread Dave
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)

Re: iOS 7 - Overriding NSNavigationController

2013-09-20 Thread David Duncan
If you are building with the iOS 7 SDK, wantsFullScreenLayout should not be consulted for your UI layout at all by the framework. The only thing I can imagine the original engineer wanted was to avoid having to set the flag to NO manually, and thus have it done automatically. Of course even if