我有一个应用程序,仅用于纵向方向。但是我不知道如何限制只使用肖像模式,一旦用户颠倒或使用LANDpace模式,我不希望我的屏幕orinetation相应地改变。
任何想法怎么做?
答案 0 :(得分:7)
可以通过覆盖此方法在App Summary(以及rootviewcontroller中,无论是Nav控制器,TabBar控制器等)中指定:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
答案 1 :(得分:2)