iOS动画

动画效果 - OC

2015-09-06  本文已影响76人  以太死多
//开启动画
[UIView beginAnimations:nil context:nil];
//设置动画执行时间
[UIView setAnimationDuration:1];
 //要指定动画的代码
self.imgPicture.bounds = originBounds;
//提交动画
[UIView commitAnimations];
[UIView animateWithDuration:0.5 animations:^{
/**需要执行动画的代码***/
}];
上一篇下一篇

猜你喜欢

热点阅读