我正在使用UIImagePickerController從照片庫中選擇圖像。但我在控制檯上收到一條消息,說"Using two-stage rotation animation. To use the smoother single-stage animation, this application must remove two-stage method implementations."
UIImagePickerController控制檯消息
這是什麼原因造成的?
感謝
我正在使用UIImagePickerController從照片庫中選擇圖像。但我在控制檯上收到一條消息,說"Using two-stage rotation animation. To use the smoother single-stage animation, this application must remove two-stage method implementations."
UIImagePickerController控制檯消息
這是什麼原因造成的?
感謝
這通常意味着你已經實現的一個:
willAnimateFirstHalfOfRotationToInterfaceOrientation:duration:
willAnimateSecondHalfOfRotationFromInterfaceOrientation:duration:
你的視圖控制器之一,即使它們是空的。這既沒有錯,也沒有被棄用,這個消息只是說,如果你將你的實現移動到:willAnimateRotationToInterfaceOrientation:duration:
幾個人似乎有同樣的問題。這些鏈接都沒有提供解決方案(據我所知),所以這篇文章只是作爲更多搜索的起點。我已經做了CW。