iOS_动画方法以及过渡效果

来源:互联网 发布:ubuntu系统最合理分区 编辑:程序博客网 时间:2024/05/22 13:42
Facebook第三方类

UIView动画
+ (void)setAnimationDuration:(NSTimeInterval)duration; + (void)setAnimationDelay:(NSTimeInterval)delay;
+ (void)setAnimationCurve:(UIViewAnimationCurve)curve;
+ (void)setAnimationRepeatAutoreverses:(BOOL)repeatAutoreverses;
+ (void)setAnimationRepeatCount:(float)repeatCount;
+ (void)setAnimationDelegate:(id)delegate;
+ (void)setAnimationWillStartSelector:(SEL)selector;
+ (void)setAnimationDidStopSelector:(SEL)selector;
+ (void)setAnimationBeginsFromCurrentState:(BOOL)fromCurrentState;

CATransition 的动画过渡效果

pageCurl
向上翻一页
pageUnCurl
向下翻一页
rippleEffect
滴水效果
suckEffect
收缩效果,如一块布被抽走
cube
 立方体效果
oglFlip
上下翻转效果





0 0