[UIView animateWithDuration:2 delay:0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
        想要修改的属性
        self.changeView.backgroundColor = [UIColor lightGrayColor];
     } completion:^(BOOL finished) {
         完成时执行
        
     }];