views:

36

answers:

1

What does this mean and why am I getting this error. Any suggestions on how to fix it?

"Using two-stage rotation animation. To use the smoother single-stage animation, this application must remove two-stage method implementations."

+1  A: 

The depreciated rotation code in the view controller class had a two step rotation. It rotated half-way, paused, then started again. The new methods do it in one smooth motion. See the UIViewController docs.

TechZen