iOS----点赞动画

来源:互联网 发布:无约束优化问题 编辑:程序博客网 时间:2024/06/05 08:27
  1. -(void)praiseAnimateWithView:(UIView *)view  
  2. {  
  3.     [UIView animateWithDuration:0.25 animations:^{  
  4.         view.transform = CGAffineTransformMakeScale(1.21.2); //放大  
  5.     } completion:^(BOOL finished) {  
  6.         [UIView animateWithDuration:0.25 animations:^{  
  7.             view.transform = CGAffineTransformMakeScale(0.90.9); //缩小  
  8.         } completion:^(BOOL finished) {  
  9.             [UIView animateWithDuration:0.25 animations:^{  
  10.                 view.transform = CGAffineTransformMakeScale(1.01.0); //正常  
  11.             } completion:^(BOOL finished) {  
  12.                   
  13.             }];  
  14.         }];  
  15.     }];  
  16. }