方法一:
- beginAnimations方法,此方法中包含有很多 setAnimation方法,具体代码可以进入该头文件中进行查看
[UIView beginAnimations:nil context:nil];
//beginAnimations和context默认为nil
[UIView setAnimationDuration:2.0];
//此处2.0为秒
[UIView beginAnimations:nil context:nil];
//beginAnimations和context默认为nil
[UIView setAnimationDuration:2.0];
//此处2.0为秒