开发者

iPhone: Animation transition types?

开发者 https://www.devze.com 2023-02-01 01:42 出处:网络
Where can I find a list of available core animation transition types? F开发者_JAVA技巧or example, there is \'UIViewAnimationTransitionFlipFromRight\' but where can I find what the other ones are calle

Where can I find a list of available core animation transition types? F开发者_JAVA技巧or example, there is 'UIViewAnimationTransitionFlipFromRight' but where can I find what the other ones are called?


They are defined at UIViewAnimationTransition section of UIView Class Reference.

typedef enum {
 UIViewAnimationTransitionNone,
 UIViewAnimationTransitionFlipFromLeft,
 UIViewAnimationTransitionFlipFromRight,
 UIViewAnimationTransitionCurlUp,
 UIViewAnimationTransitionCurlDown,
} UIViewAnimationTransition;
0

精彩评论

暂无评论...
验证码 换一张
取 消