在iOS中旋转视图需要多长时间?

时间:2011-07-08 20:27:11

标签: ios orientation rotation nstimer

我希望在视图完成旋转后使用NSTimer来调用方法。视图需要多长时间才能完全旋转?谢谢你的帮助!

2 个答案:

答案 0 :(得分:2)

您可以实施didRotateFromInterfaceOrientation:并将代码放在那里。

答案 1 :(得分:1)

您不必使用计时器。

在Apple的文档中,有一个偶数触发器在iphone旋转后被触发

见这里:

http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UIViewController_Class/Reference/Reference.html#//apple_ref/occ/instm/UIViewController/didRotateFromInterfaceOrientation

我相信你可以实现这个方法:

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation