On 30 Nov 2013, at 00:42, Kyle Sluder wrote:
>> On Nov 29, 2013, at 1:18 AM, "Gerriet M. Denkmann"
>> wrote:
>>
>> 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 bi
On 30 Nov 2013, at 00:42, Kyle Sluder wrote:
>> On Nov 29, 2013, at 1:18 AM, "Gerriet M. Denkmann"
>> wrote:
>>
>> 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 bi
> On Nov 29, 2013, at 1:18 AM, "Gerriet M. Denkmann"
> wrote:
>
> 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)?
UIViewController.topLayoutGu
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