iOS常用技术 - 基础动画(水波动画)

来源:互联网 发布:o2o网络借贷模式的特点 编辑:程序博客网 时间:2024/05/22 17:26
有记录就有收获~吼吼~

在需要添加小动画的事件前添加以下代码,例如:在界面跳转之前

//初始化CATransition *animation = [CATransition animation];//时间间隔animation.duration = 0.8;//animation.timingFunction = UIViewAnimationCurveEaseInOut;//动画类型animation.type = @"rippleEffect”; //水波动画//是否全部覆盖?animation.fillMode = kCAFillModeForwards;//动画开始的方向animation.subtype = kCATransitionFromRight;  [self.view.window.layer addAnimation:animation forKey:nil];
0 0