码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 抖动动画

时间:2016-05-09 12:45:44      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

-(void)animationWithCell:(WaterLevelCollectionCell *)cell{
//    添加摇晃动画
    {
        CAKeyframeAnimation *frame=[CAKeyframeAnimation animation];
        CGFloat left=-M_PI_2*0.125;
        CGFloat right=M_PI_2*0.125;
        
        frame.keyPath=@"postion";
        frame.keyPath=@"transform.rotation";
        
        frame.values=@[@(left),@(right),@(left)];
        frame.duration = 0.5;
        frame.repeatCount = 1000000;
        [cell.layer removeAllAnimations];
        [cell.layer addAnimation:frame forKey:nil];
    }
}

 

iOS 抖动动画

标签:

原文地址:http://www.cnblogs.com/niit-soft-518/p/5473304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!