Flip View in ipad -


i having button on view clicking on next view should open in flip view.

can me??

i'm going assume view managed view-controller, , view want flip-in.

a relatively easy way present new view using presentmodalviewcontroller:animated:

myviewcontroller* mvc = [[[myviewcontroller alloc] init] autorelease]; mvc.modalpresentationstyle = uimodalpresentationfullscreen; mvc.modaltransitionstyle = uimodaltransitionstylefliphorizontal; [self presentmodalviewcontroller: mvc animated: yes]; 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -