gpt4 book ai didi

iphone - 删除 iPhone SDK 中应用程序的纵向功能

转载 作者:行者123 更新时间:2023-12-03 19:03:55 24 4
gpt4 key购买 nike

有没有办法让我的应用程序只能在横向模式下查看?我已经设法将应用程序的方向默认为横向,但是在 iPad 模拟器中,当我执行 Command->Arrow 时,应用程序会旋转为纵向。我已经删除了 plist 中“支持的界面方向”下两个纵向条目的列表,但这似乎没有改变任何内容。

有什么想法吗?

最佳答案

在你的 View Controller 中,有一个委托(delegate)方法:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) ||
(interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

关于iphone - 删除 iPhone SDK 中应用程序的纵向功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3176577/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com