转场动画CATransition

来源:互联网 发布:appstore付费软件 编辑:程序博客网 时间:2024/04/30 08:30

转场动画的类型(NSString *type)

  • fade : 交叉淡化过渡

  • push : 新视图把旧视图推出去

  • moveIn: 新视图移到旧视图上面

  • reveal: 将旧视图移开,显示下面的新视图

  • cube : 立方体翻滚效果

  • oglFlip : 上下左右翻转效果

  • suckEffect : 收缩效果,如一块布被抽走

  • rippleEffect: 水滴效果

  • pageCurl : 向上翻页效果

  • pageUnCurl : 向下翻页效果

  • cameraIrisHollowOpen : 相机镜头打开效果

  • cameraIrisHollowClos : 相机镜头关闭效果



                CATransition *anima = [CATransitionanimation];

                anima.type =kCATransitionMoveIn;//设置动画的类型

                anima.subtype =kCATransitionFromRight; //设置动画的方向

                anima.duration =0.5f;

                [self.guideImgV.layeraddAnimation:anima forKey:@"moveInAnimation"];

                 self.guideImgV.image = [ResourceHelper loadImageByTheme:@"GThree"];


0 0
原创粉丝点击