0

我有两个viewcontroller,ViewControllerA支持横向和纵向,点击ViewControllerA中的一个按钮推入ViewControllerB,它只支持横向,然后我把手机变成横向然后弹回ViewControllerA,默认A现在是横向模式,但我希望它在这种情况下首先是肖像。我该如何实施?

4

1 回答 1

0

在你ViewControllerAviewwillappear方法中设置方向

[[UIDevice currentDevice]setOrientation:UIInterfaceOrientationPortrait];
于 2013-06-25T05:21:37.900 回答