UIView

7

Sto usando seguente codiceUIView

[UIView animateWithDuration:1.0 
         delay:0.05 
        options:UIViewAnimationCurveEaseIn 
       animations:^{ 

            //Code 

       } completion:^(BOOL finished) {}]; 

Sto ottenendo il seguente avviso

Implicit conversion from enumeration type 'enum UIViewAnimationCurve' to different enumeration type 'UIViewAnimationOptions' (aka 'enum UIViewAnimationOptions') 

Come risolvere questo problema?

risposta

17

Si dovrebbe usare UIViewAnimationOptionCurveEaseIn invece.

UIViewAnimationCurveEaseIn fa parte di un'altra enumerazione utilizzata in altri metodi.

+0

Grazie soo ha funzionato molto per me :) – Hassy