overlapping status bar
overlapping status bar
- Subject: overlapping status bar
- From: "Gerriet M. Denkmann" <email@hidden>
- Date: Fri, 29 Nov 2013 16:18:04 +0700
On iPad 7.0.4:
AViewController *a = ...
BViewController *b = ...
UISplitViewController *spv = [ [ UISplitViewController alloc ] init ];
spv.viewControllers = @[ a, b ];
spv.delegate = ...;
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.rootViewController = spv;
self.window.tintColor = self.tintColour;
[ self.window makeKeyAndVisible];
The problem: the status bar is visible (as it should be) but it overlaps both view a and b, which looks ugly.
Is there any way to tell these views to move down a little bit (using autolayout)?
Gerriet.
_______________________________________________
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