gpt4 book ai didi

objective-c - 即使我在 shouldAutorotate 上返回 NO, View 也会被旋转

转载 作者:行者123 更新时间:2023-11-28 17:32:07 26 4
gpt4 key购买 nike

我有一个 ViewController,我有这段代码:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

return NO;

}

但是,如果我改变方向, View 就会旋转。谁能帮帮我?

最佳答案

以下是我如何让 iPad 保持横向模式:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (interfaceOrientation==UIInterfaceOrientationLandscapeLeft || interfaceOrientation==UIInterfaceOrientationLandscapeRight)
{
return YES;
}

else
{
return NO;
}

}

关于objective-c - 即使我在 shouldAutorotate 上返回 NO, View 也会被旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10923443/

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