UIView

7

Tôi đang sử dụng đoạn mã sauUIView

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

            //Code 

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

Tôi nhận được cảnh báo sau đây

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

Làm thế nào để giải quyết này?

Trả lời

17

Thay vào đó, bạn nên sử dụng UIViewAnimationOptionCurveEaseIn.

UIViewAnimationCurveEaseIn là một phần của một enum khác được sử dụng trong các phương pháp khác.

+0

Cảm ơn bạn đã làm việc rất nhiều cho tôi :) – Hassy