UIViewAnimationCurveEaseInOut is not a transition type for a uiview animation transition, it is a type of animation curve. The following is a valid link to an apple developer link.
UIViewAnimationTransitionNone,
UIViewAnimationTransitionFlipFromLeft,
UIViewAnimationTransitionFlipFromRight,
UIViewAnimationTransitionCurlUp,
UIViewAnimationTransitionCurlDown.
Please use one of them. If you want to set an animation curve, do the following.
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]