我正在使用以下代码
[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')
怎么解决这个?
解决方法
您应该使用UIViewAnimationOptionCurveEaseIn.
UIViewAnimationCurveEaseIn是其他方法中使用的不同枚举的一部分.