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
Post a Comment