gpt4 book ai didi

ios - 如何使用 UISplitViewController iOS 在 iPad 上强制以纵向模式显示 MasterViewController

转载 作者:行者123 更新时间:2023-11-30 13:16:37 26 4
gpt4 key购买 nike

我正在使用 UISplitViewController 制作应用程序,但它需要在 iPad 中的纵向模式下仅显示 MasterViewController(与 iPhone 上的纵向模式相同)。横屏模式下正常工作。

请给我一些想法来实现它。提前致谢。

最佳答案

将其放入viewWillAppear

NSNumber *value = [NSNumber numberWithInt: UIInterfaceOrientationMaskPortrait];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];

关于ios - 如何使用 UISplitViewController iOS 在 iPad 上强制以纵向模式显示 MasterViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38157247/

26 4 0
文章推荐: ios - 在 Swift 字典中搜索
文章推荐: c# - 是否有使用 is 和 as 的理由?
文章推荐: c# - 带有 Visual Studio 2013 的 Crystal 报表 aspnet_client/system_web/4_6_81
文章推荐: C# 创建具有动态属性的对象 : LINQ select List values by property names array