iPhone: Animation transition types?
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;
精彩评论