ios各类动画效果

最普通动画:  //开始动画  [UIView beginAnimations:nil context:nil];   //设定动画持续时间  [UIView setAnimationDuration:2];  //动画的内容  frame.origin.x += 150;  [img setFrame:frame];  //动画结束  [UIView commitAnimations];  连续
相关文章
相关标签/搜索