我已经安装了新的 iOS 6.1 和 Xcode 4.6,现在我的代码中有一些枚举警告,我无法解决这个问题:
[UIView animateWithDuration:0.4
delay:0.0
options:UIViewAnimationCurveEaseOut
animations:^{
} completion:^(BOOL finished) {}];
这是警告:
Implicit conversion from enumeration type 'enum UIViewAnimationCurve' to different enumeration type 'UIViewAnimationOptions' (aka 'enum UIViewAnimationOptions')
我该如何解决这个警告?