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