iphone - horizontal flip animation on modal UIView -


how can present modal view horizontal flip animation (like pushing view controller on navigation controller) ? tried doesn't work

[uiview beginanimations:@"animation" context:nil]; [uiview setanimationtransition:uiviewanimationtransitionflipfromleft forview:self.view cache:no];  [self presentmodalviewcontroller:detailsviewcontroller animated:no]; [uiview commitanimations]; 

thanks !

this need:

detailsviewcontroller.modaltransitionstyle = uimodaltransitionstylefliphorizontal; [self presentmodalviewcontroller:detailsviewcontroller animated:yes]; 

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -