// 开始动画
[UIView beginAnimations:nil context:nil];
// 动画持续2秒
[UIView setAnimationDuration:2.0];
/*
修改属性
*/
// 提交动画
[UIView commitAnimations];