user285594
user285594

Reputation:

iPhone - why the fullscreen does not work but it works with iPad?

enter image description here In iPad Pro, Air, Mini the same settings are working, but when i use iPhone 7 real device and start the same app, it does not go as full screen like it does with any iPad.

Is there any other settings i might need/missing to make both platform run my app correctly?

enter image description here

- (void)viewDidLoad {
  [super viewDidLoad];
  self.view.backgroundColor = [UIColor blackColor];
    //[self myMethodHere:@"testing/pesting"];
  [self showASimpleExitButtonOnBottomCenter];
}

Upvotes: 0

Views: 94

Answers (2)

user285594
user285594

Reputation:

Solution to the problem was:

enter image description here

1) remove "Launch image source"

2) Add "Launch Screen file" > new LaunchScreen.storyboard

Upvotes: 0

Abhishek Mitra
Abhishek Mitra

Reputation: 3395

Follow the image, I had the same issue once for this section. See it, if it helps you.

enter image description here

due Launch Images Source the problem was arised.

Hope it helps you..

Upvotes: 1

Related Questions