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

python - Does anyone know how to configure the hunpos wrapper class on nltk? -

mysql - How to insert just year and month into date field? -