0

I'm looking for the best way to perform good looking segue.

My main goal is avoid the gap on the top of the screen and fill the whole screen (on iPhone 11 or XR etc.).

Here you can see what I mean (I used common Present Modally segue)

What solution are you using in your apps?

Jawad Ali
  • 13,556
  • 3
  • 32
  • 49
wojtek
  • 75
  • 1
  • 1
  • 8

1 Answers1

1

modalPresentationStyle is required to be set on the ViewController which is being presented.

vc.modalPresentationStyle = .fullScreen

and From storyboard you can do it like this

enter image description here

Jawad Ali
  • 13,556
  • 3
  • 32
  • 49