views:

584

answers:

4

Is there a way to make the same type of corner like in the maps app on the iPhone (or in the books app on the iPad when turning the pages)?

A: 

You want the page curl animation. UIViewAnimationTransitionCurlUp is the transition type. You can find full details in the SDK docs. There's a useful discussion here, though.

Phil Nash
A: 

You cannot make (easily) exactly the same transition as the one in the maps app : the half curl up transition (that presents the map modes to the user, under the map) is not part of the public API.

You can only use the UIViewAnimationTransitionCurlUp that gives more the impression of a turned page.

The transition in the iPad presentation wasn't exactly that one as well : the page was really turned from right to left in the presentation. The UIViewAnimationTransitionCurlUp is more a move of a page from the bottom to the top.

yonel
+1  A: 

The half curl is available in iPhoneOS 3.2 as a UIModalTransition. I don't think they have it as a UIViewAnimationTransition. I am trying to find the curl from left to right and right to left as well.

DGG
A: 

Anyone managed to find a solution . I am using catransition pagecurl but i heard this will get the app rejected.