码迷,mamicode.com
首页 > 其他好文 > 详细

视图左右抖动动画

时间:2015-04-07 17:07:40      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

CABasicAnimation *shake = [CABasicAnimation animationWithKeyPath:@"transform.translation.x"];

    shake.fromValue = [NSNumber numberWithFloat:-5];

    shake.toValue = [NSNumber numberWithFloat:5];

    //执行时间

    shake.duration = 0.1;

    //是否重复

    shake.autoreverses = YES;

    //次数

    shake.repeatCount = 2;

    [self.label.layer addAnimation:shake forKey:@"shakeAnimation"];

    self.label.alpha = 1.0;

    [UIView animateWithDuration:2.0 delay:0.0 options:UIViewAnimationOptionCurveEaseIn | UIViewAnimationOptionAllowUserInteraction animations:^{

        //self.label.alpha = 0.0; //透明度变0则消失

 

    } completion:nil];

视图左右抖动动画

标签:

原文地址:http://www.cnblogs.com/somnus-l/p/4398541.html

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