iOS - programmatic modal segue with animation (such as flip) -


i know can modal segue in code this:

[presentmodalviewcontroller:my_view, animated:yes]; 

but how specify fade in or horizontal/vertical flip programmatically?

thanks, pachun

set property viewcontroller: modaltransitionstyle

uimodaltransitionstyle apple doc

  typedef enum { uimodaltransitionstylecoververtical = 0,                   uimodaltransitionstylefliphorizontal,                  uimodaltransitionstylecrossdissolve,                     uimodaltransitionstylepartialcurl,} uimodaltransitionstyle; 

Comments

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

asp.net mvc - Implementing normal user/pass, Twitter & Facebook auth -