UIModalPresentationFormSheet on iPhone

How can I create a Modal View UIModalPresentationFormSheet presentation style (or something similar to it) on an iPhone?

Thanks in advance!

+5
source share
2 answers

You cannot use the built-in frameworks.

You will need to write your own code to show a view that does not completely hide the base view, unless someone else has done so and published it publicly.

+8
source

You can also check out the following open source project:

https://github.com/KitchenStories/charleene

+1
source

All Articles