我在 viewDidAppear 中尝试了这个,但我有一秒钟的延迟 =( 我能做什么?在 viewDidLoad 中工作?
-(void)viewDidAppearBOOL)animated{
fullRotation = [CABasicAnimation animationWithKeyPath"transform.rotation"];
fullRotation.fromValue = [NSNumber numberWithFloat:0];
fullRotation.toValue = [NSNumber numberWithFloat(720*M_PI)/360)];
fullRotation.duration = 5;
// fullRotation.repeatCount = 1e10f;
[_propImaCirculoCompleto.layer addAnimation:fullRotation forKey"360"];
}
Best Answer-推荐答案 strong>
你不应该在 viewDidLoad 中做任何动画,因为 View 还没有 super View ,所以动画是无关紧要的。
对您的代码示例的一些想法:
建议
如果您尝试为由不同 View Controller 管理的 View 的外观设置动画,则呈现 Controller 负责动画。有几种方法可以实现这一点,具体取决于您支持的最低 iOS 版本。
我没有准备好上面的示例代码,但这就是我要研究的。
关于ios - 如何在 viewDidLoad 中执行 UIView animateWithDuration? IOS 7,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/19033942/
|