gpt4 book ai didi

ios9 - 在 iOS 9 中以编程方式锁定方向

转载 作者:行者123 更新时间:2023-12-04 18:37:19 25 4
gpt4 key购买 nike

作为标题,我想知道现在是否可以在 iOS 9 中以编程方式锁定方向?这对我的应用程序至关重要,但我找不到办法做到这一点。谢谢。

最佳答案

使用 supportedInterfaceOrientations 和 preferredInterfaceOrientationForPresentation 来管理方向
例如

-(UIInterfaceOrientationMask)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{
return UIInterfaceOrientationPortrait;
}

关于ios9 - 在 iOS 9 中以编程方式锁定方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32571857/

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