转场动画的类型(NSString *type)
-
fade
: 交叉淡化过渡 -
push
: 新视图把旧视图推出去 -
moveIn
: 新视图移到旧视图上面 -
reveal
: 将旧视图移开,显示下面的新视图 -
cube
: 立方体翻滚效果 -
oglFlip
: 上下左右翻转效果 -
suckEffect
: 收缩效果,如一块布被抽走 -
rippleEffect
: 水滴效果 -
pageCurl
: 向上翻页效果 -
pageUnCurl
: 向下翻页效果 -
cameraIrisHollowOpen
: 相机镜头打开效果 -
cameraIrisHollowClos
: 相机镜头关闭效果
CATransition *anima = [CATransition animation];
anima.type = kCATransitionMoveIn;//设置动画的类型
anima.subtype = kCATransitionFromRight; //设置动画的方向
anima.duration = 0.5f;
[self.guideImgV.layer addAnimation:anima forKey:@"moveInAnimation"];
self.guideImgV.image = [ResourceHelper loadImageByTheme:@"GThree"];