Different types of CATransition types available in iPhone sdk

前端 未结 3 1117
心在旅途
心在旅途 2021-01-30 18:35

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.

3条回答
  •  自闭症患者
    2021-01-30 19:23

    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.

提交回复
热议问题