UIImagePickerController控制台消息

时间:2010-07-30 20:56:25

标签: objective-c uikit uiimagepickercontroller

我正在使用UIImagePickerController从照片库中选择图像。但是我在控制台上收到一条消息"Using two-stage rotation animation. To use the smoother single-stage animation, this application must remove two-stage method implementations."

这是什么原因?

由于

2 个答案:

答案 0 :(得分:1)

有几个人似乎遇到了同样的问题。这些链接都没有提供解决方案(据我所知),因此本文仅作为更多搜索的起点。我做了CW。

答案 1 :(得分:0)

这通常意味着你实施了以下之一:

willAnimateFirstHalfOfRotationToInterfaceOrientation:duration:
willAnimateSecondHalfOfRotationFromInterfaceOrientation:duration:
在其中一个视图控制器上

,即使它们是空的。这既不是错误也不是弃用,如果您将实施移至:willAnimateRotationToInterfaceOrientation:duration:

,该消息只会说它可能会做得更好