Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Different types of CATransition types available in iPhone sdk

Tags:

iphone

Do anyone knows the link to the different types of name for available CATransition.

Like ripple,swift....

I want to know all the available names.

like image 531
rkb Avatar asked Aug 03 '09 20:08

rkb


2 Answers

These are the types that are available:

kCATransitionFade
kCATransitionMoveIn
kCATransitionPush
kCATransitionReveal
@"cameraIris"
@"cameraIrisHollowOpen"
@"cameraIrisHollowClose"
@"cube"
@"alignedCube"
@"flip"
@"alignedFlip"
@"oglFlip"
@"rotate"
@"pageCurl"
@"pageUnCurl"
@"rippleEffect"
@"suckEffect"

Subtypes that are available are:

kCATransitionFromRight
kCATransitionFromLeft
kCATransitionFromTop
kCATransitionFromBottom

The ones in the link @rkb posted are mostly private and cannot be used.

like image 196
runmad Avatar answered Nov 03 '22 22:11

runmad


Are there any third-party libraries to do cool view transitions in iPhone OS?

Here are the available types.

like image 33
rkb Avatar answered Nov 04 '22 00:11

rkb