首页 > 代码库 > Block 动画 第二种

Block 动画 第二种




     参数1. 动画时长 参数2. 要改变属性 3.
   [UIView animateWithDuration:2 animations:^{
       self.changeView.backgroundColor = [UIColor greenColor];
 

    } completion:^(BOOL finished) {
      

    动画完成时调用 finishde : 用于动画是否完成
    

  if (finished) {
            NSLog(@"完成");
       }
      NSLog(@"kkkk");
 

    }];
  

Block 动画 第二种