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

SAP Web Service from .NET via WCF -

Optimized Line drawing in QT -

datetime - str to time in python -