美文网首页
ios 点赞动画

ios 点赞动画

作者: Song1025 | 来源:发表于2016-12-02 17:14 被阅读1344次

模仿的qq空间的点赞。qq的是从未点赞状态到点赞是有动画。从点赞状态到未点赞是没有动画。

写的butten的分类。.h中暴露了方法,如果没有点过赞点击btn的时候调用。


- (void)animation {

CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath:@"transform.scale"];

animation.values = @[@1.4, @1.0];

animation.duration = 0.3;

animation.calculationMode = kCAAnimationCubic;

[self.layer addAnimation:animation forKey:@"transform.scale"];

}

相关文章

网友评论

      本文标题:ios 点赞动画

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