私は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];
前もって感謝します !