新しいiOS6.1とXcode4.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')
この警告を解決するにはどうすればよいですか?
間違ったオプション値を使用しています。 UIViewAnimationOptionCurveEaseOut
を試してください。
UIViewAnimationCurveEaseOut
をUIViewAnimationOptionCurveEaseOut
に置き換えます
例:
[UIView animateWithDuration:0.4
delay:0.0
UIViewAnimationOptionCurveEaseOut
animations:^{
} completion:^(BOOL finished) {}];