微博点赞动画图标放大缩回去

来源:互联网 发布:windows10装mac双系统 编辑:程序博客网 时间:2024/04/29 11:54
-(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) {                            }];        }];    }];}

0 0
原创粉丝点击