美文网首页
编辑时抖动的动画效果

编辑时抖动的动画效果

作者: 执着的人请保持微笑 | 来源:发表于2020-04-24 16:09 被阅读0次

    CAKeyframeAnimation *anima = [CAKeyframeAnimation animation];

        anima.keyPath = @"transform.rotation";

        anima.values = @[@(angleValue(-1)),@(angleValue(1)),@(angleValue(-1))];

        anima.repeatCount=MAXFLOAT;

    添加动画

    [self.layer addAnimation:anima forKey:@"editDrugAnimation"];

    删除动画

     [self.layer removeAnimationForKey:@"editDrugAnimation"];

    相关文章

      网友评论

          本文标题:编辑时抖动的动画效果

          本文链接:https://www.haomeiwen.com/subject/vovfwhtx.html