我正在使用以下代码
[UIView animateWithDuration:1.0
delay:0.05
options:UIViewAnimationCurveEaseIn
animations:^{
//Code
} completion:^(BOOL finished) {}];
我收到以下警告
Implicit conversion from enumeration type 'enum UIViewAnimationCurve' to different enumeration type 'UIViewAnimationOptions' (aka 'enum UIViewAnimationOptions')
如何解决这个问题?