Sorry if I may come off abit of a newbie but does anyone know how I can just extend the height of my View non-programmatically in storyboard? If you look at the images attached, the view is not extended all the way to the top. This is only a prototype for iPhone X/11 so size constraints is optional for this.
Asked
Active
Viewed 64 times
-1
-
This is the way modal presentations are handled on iPhone X/11. – Rohan Bhale Feb 03 '20 at 05:55
-
Does this answer your question? [Presenting modal in iOS 13 fullscreen](https://stackoverflow.com/questions/56435510/presenting-modal-in-ios-13-fullscreen) – Keshu R. Feb 03 '20 at 06:43
2 Answers
0
As Rohan stated This is the way modal presentations are handled on iOS 13 you can change its presentation style to full screen
ObjC
vc.modalPresentationStyle = UIModalPresentationFullScreen;
Swift
vc.modalPresentationStyle = .fullScreen
From Storyboard
Select segue then convert its kind to modal ... it will show you option of Presentation. Select full screen

Jawad Ali
- 13,556
- 3
- 32
- 49
0
Select destination controller from storyboard go to attribute inspector and click on presentation choose full screen.

Muhammad Afzal
- 201
- 1
- 9