如何在cocos2d中暂停AutoRotation(使用UIViewController进行AutoRotation)?

时间:2012-01-02 09:42:55

标签: iphone cocos2d-iphone

我的游戏应用是LandScape&使用UIViewController进行AutoRotation。

登录视图(场景)是UIView,而不是场景。

我想要“纵向模式”登录视图。并且做了工作。

当我使用UITextField时...... AutoRotation会产生一些问题

仅键盘是横向模式...

所以我需要在LogIn View中进行非自动旋转。 (登录后,需要自动化)

如何暂停AutoRotation?

1 个答案:

答案 0 :(得分:0)

你可能想要实现“shouldAutorotateToInterfaceOrientation”并将方向锁定为肖像

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

     return interfaceOrientation == UIInterfaceOrientationPortrait; 
}