The issue is that you created the navigation in a subclass of something. Say you created the navigation controller and you added it to a view controller you have.
I previously contacted Apple via a bug report with this issue. They confirmed my mistake via Technical Support
Make sure you never add a navigation controller to a view controller. A navigation controller automatically rescales that top section for the status bar. What you see there is actually a hole at the top of your navbar left for the status bar to come through.
To avoid this, just never add the navigation controller to a view controller. Always do all working out with a navigation controller itself within the App delegate itself.
|