iphone - iOS 6.1 y Xcode 4.6, advertencia de enrutamiento UIViewAnimationCurveEaseOut
enums xcode4.6 (2)
Estás usando el valor de opción equivocado. Pruebe UIViewAnimationOptionCurveEaseOut
.
He instalado el nuevo iOS 6.1 y Xcode 4.6, y ahora tengo un aviso de enumeración en mi código, no puedo resolverlo:
[UIView animateWithDuration:0.4
delay:0.0
options:UIViewAnimationCurveEaseOut
animations:^{
} completion:^(BOOL finished) {}];
y esta es la advertencia:
Implicit conversion from enumeration type ''enum UIViewAnimationCurve'' to different enumeration type ''UIViewAnimationOptions'' (aka ''enum UIViewAnimationOptions'')
¿Cómo puedo resolver esta advertencia?
Reemplace UIViewAnimationCurveEaseOut
en UIViewAnimationOptionCurveEaseOut
P.ej:
[UIView animateWithDuration:0.4
delay:0.0
UIViewAnimationOptionCurveEaseOut
animations:^{
} completion:^(BOOL finished) {}];