如何通过iPad中的代码更改界面的方向

时间:2011-03-22 11:37:34

标签: iphone orientation

您好 我想知道是否可以通过iPhone / iPad.ie中的代码更改界面的方向,例如我有一个按钮。如果我点击我的界面方向应该改变。如果有可能请帮助我如何做。

1 个答案:

答案 0 :(得分:4)

请仔细阅读

Is there a documented way to set the iPhone orientation?

UIDevice上有一个未记录的属性设置器可以完成这个技巧,但显然会生成一个编译器警告,并且可能会随着SDK的未来版本而消失。

[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationPortrait];

可以帮助您的另一个链接Forcing UIInterfaceOrientation changes on iPhone