gpt4 book ai didi

iphone - 如何强制水平方向?

转载 作者:行者123 更新时间:2023-12-03 21:10:36 27 4
gpt4 key购买 nike

我想要执行以下操作:

ViewControllerA 不应进入水平方向ViewControllerA 推送 ViewControllerBViewControllerB 应该进入水平方向。

不确定要设置什么才能实现这一点。

最佳答案

在每个 UIViewController 中,您需要重写 shouldAutorotateToInterfaceOrientation 方法,并为您支持的每个界面方向返回一个 bool 值:

// ViewControllerA
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

// ViewControllerB
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait ||
interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

有关更多信息,请查看 UIViewController class reference .

关于iphone - 如何强制水平方向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3538796/

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