UIModalTransitionStylePartialCurl, fewer flourishes

Is there a way to limit the number of twists of this type of presentation? I know that the system automatically freezes depending on the content inside the view of the view manager, which we present modally in taht.

But thta does not work for me in my iPad app . I only have a small table in the lower right corner, but the page curls over half.

I double-checked all the properties and autoresist the masks without finding a solution.

Any suggestion?

+4
source share
1 answer

I have the same problem. The same source code for the iPhone and iPad, but the iPad version curls the page too much, leaving a lot of free space. Then I tried to put a shortcut at the bottom of the iPhone version and the same thing would happen.

The explanation . Apparently, UIModalTransitionStylePartialCurl always closes half the page, at least. The only reason the iPhone does not leave free space, but on the iPad it is because, because the screen is much smaller, on the iPhone your controls usually take up not much less than half the page, which is not the case on the iPad.

The only workaround I found was to redesign the iPad plan, so your user interface controls take up more space or just "live with it."

0
source

All Articles