美文网首页iOS视图
UIButton点击放大缩小动画

UIButton点击放大缩小动画

作者: 不要虚度美好的时光 | 来源:发表于2022-03-12 18:12 被阅读0次
   UIButton *button = _dialing_Btn;
   button.transform = CGAffineTransformIdentity;
   [UIView animateKeyframesWithDuration:0.5 delay:0 options:0 animations: ^{
       [UIView addKeyframeWithRelativeStartTime:0 relativeDuration:1 / 3.0 animations: ^{
           
           button.transform = CGAffineTransformMakeScale(1.5, 1.5);
       }];
       [UIView addKeyframeWithRelativeStartTime:1/3.0 relativeDuration:1/3.0 animations: ^{
           
           button.transform = CGAffineTransformMakeScale(0.8, 0.8);
       }];
       [UIView addKeyframeWithRelativeStartTime:2/3.0 relativeDuration:1/3.0 animations: ^{
           
           button.transform = CGAffineTransformMakeScale(1.0, 1.0);
       }];
   } completion:nil];

相关文章

网友评论

    本文标题:UIButton点击放大缩小动画

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