您好我正在创建一个iOS应用程序,我希望它一直在纵向运行,即使我向左/向右转,我希望它在这里保持相同的所有设置与肖像相关的一些图像。
这就是我设置的所有内容所以我的问题是我如何保持纵向即使我在它运行的时候倾斜它以纵向打开但是如果我把它向左转它将旋转到横向。
在此先感谢,我期待着您的到来。
答案 0 :(得分:1)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
使用此方法仅支持纵向模式
答案 1 :(得分:1)
对于您从此功能支持的任何方向返回YES。
(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}