J'ai installé les nouveaux iOS 6.1 et Xcode 4.6, et maintenant j'ai quelques avertissements d'énumération dans mon code, je ne peux pas résoudre ceci:
[UIView animateWithDuration:0.4
delay:0.0
options:UIViewAnimationCurveEaseOut
animations:^{
} completion:^(BOOL finished) {}];
et voici l'avertissement:
Implicit conversion from enumeration type 'enum UIViewAnimationCurve' to different enumeration type 'UIViewAnimationOptions' (aka 'enum UIViewAnimationOptions')
Comment puis-je résoudre cet avertissement?