美文网首页
iOS----点赞动画

iOS----点赞动画

作者: H_A_N | 来源:发表于2017-09-14 09:55 被阅读0次

-(void)praiseAnimateWithView:(UIView *)view
{
[UIView animateWithDuration:0.25 animations:^{
view.transform = CGAffineTransformMakeScale(1.2, 1.2); //放大
} completion:^(BOOL finished) {
[UIView animateWithDuration:0.25 animations:^{
view.transform = CGAffineTransformMakeScale(0.9, 0.9); //缩小
} completion:^(BOOL finished) {
[UIView animateWithDuration:0.25 animations:^{
view.transform = CGAffineTransformMakeScale(1.0, 1.0); //正常
} completion:^(BOOL finished) {

        }];  
    }];  
}];  

}

相关文章

网友评论

      本文标题:iOS----点赞动画

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