Flip View for 2.2.1 iPhone SDk -
i have app works great in 3.1.2, yet when revert 2.2.1 method flip view doesn't work, using following code:
-(ibaction)infobuttonpressed:(id)sender { secondviewcontroller *second = [[secondviewcontroller alloc] initwithnibname: nil bundle:nil]; second.modaltransitionstyle = uimodaltransitionstylefliphorizontal; [self presentmodalviewcontroller:second animated:yes]; }
i following error (http://screencast.com/t/ytjlytgz). thoughts on how can fix easily?
modaltransitionstyle
available 3.0+. if want have similar transition have create animation transition yourself. take @ following uiview function
+ (void)setanimationtransition:(uiviewanimationtransition)transition forview:(uiview *)view cache:(bool)cache
Comments
Post a Comment