由于警告,我刚刚更新了我的应用程序,现在我收到以下错误从枚举类型“枚举 UIViewAnimationCurve”隐式转换为不同的枚举类型“UIAnimationOptions”(又名“枚举 UIViewAnimationOptions”)这是我使用的代码。
[UIView animateWithDuration:1 delay:0 options:UIViewAnimationCurveEaseIn animations:^{arrow2.titleLabel.alpha = 1,arrow2.center = CGPointMake(160, 120); ball.center = CGPointMake(160, 120);text.alpha = 0;} completion:^ (BOOL completed) {} ];
我需要做什么才能摆脱这个警告/谢谢
发现答案添加 Option to code UIViewAnamation* Option *CurveEaseIn 处理了它。