0

I am trying to create a second Storyboard. I want it to be similar to the first Storyboard background. I insert UIImageView and fit it all the page, however, why it is not fitting the entire page as shown in the image below:

see image

Nimesh Neema
  • 1,528
  • 2
  • 17
  • 44

2 Answers2

0
let vc = UIViewController()
vc.modalPresentationStyle = .fullScreen //or .overFullScreen for transparency
self.present(vc, animated: true, completion: nil)
Ved Sharma
  • 701
  • 1
  • 6
  • 20
0

Set the presentation of ViewController in storyBoard.

enter image description here

Anmol Rattan
  • 137
  • 1
  • 8