When trying to make an animation in UIView
it says 'implicit conversion from enumeration type'
My code is:
[UIView animateWithDuration:0.5 delay:0 options:UIViewAnimationCurveEaseIn animations:^{
[pea setFrame:CGRectMake(82, 224, 35, 35)];
} completion:^(BOOL finished){}];
Just wondering how I can fix this?