我是iPhone
开发人员的新手,
我想实现不同Animations
的按钮点击,Button
我的主页上有 5 个
每次单击按钮时,我都想导航到一个不同的新页面,Animation
所以我想知道 . 中可用的不同动画是什么iPhone
。
到目前为止我只找到了2个动画,
(1)
[UIView beginAnimations:@"yourAnim" context:nil];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:yourView cache:cacheFlag];
...
[UIView commitAnimations];
(2)
[UIView beginAnimations:@"yourAnim" context:nil];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:yourView cache:cacheFlag];
...
[UIView commitAnimations];
提前致谢 !