A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© zwcshy 中级黑马   /  2014-12-3 09:56  /  825 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. UIView *zanView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
  2. zanView.backgroundColor = [UIColor redColor];
  3. [self.view addSubview:zanView];
  4. [UIView animateWithDuration:0.3 animations:^{
  5.     zanView.transform = CGAffineTransformMakeScale(1.2, 1.2);
  6. } completion:^(BOOL finished) {
  7.     [UIView animateWithDuration:0.3 animations:^{
  8.         zanView.transform = CGAffineTransformMakeScale(0.9, 0.9);
  9.     } completion:^(BOOL finished) {
  10.         [UIView animateWithDuration:0.3 animations:^{
  11.             zanView.transform = CGAffineTransformMakeScale(1.0, 1.0);
  12.         } completion:^(BOOL finished) {
  13.             
  14.         }];
  15.     }];
  16. }];
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马