So it's well known that the UIViewController view goes under the status bar. My GUI is developed entirely programmatically, so none of the posts that I found on SO solved the problem for me. In particular,
if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
self.edgesForExtendedLayout = UIRectEdgeNone;
does nothing whatsoever!
Question: is there a setting or a command to make my GUI in IOS 7 work just like it did in IOS 6: the UIViewController view goes right under the status bar (20px down from the top of the screen).
Many thanks in advance,
Sam