gpt4 book ai didi

ios - iOS 中锁定/解锁方向变化

转载 作者:行者123 更新时间:2023-12-02 03:05:59 27 4
gpt4 key购买 nike

我正在 iOS 中开发一个应用程序。我需要通过单击按钮来锁定或解锁方向。

我查过this链接也。

我需要通过单击按钮锁定屏幕,如果再次单击则需要解锁。

我尝试过使用此代码,但没有用。

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


-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationPortrait | UIInterfaceOrientationLandscapeLeft | UIInterfaceOrientationLandscapeRight |UIInterfaceOrientationPortraitUpsideDown;
}

感谢任何帮助。

最佳答案

如果您只想在单击按钮时锁定旋转,则可以使用。

- (BOOL)shouldAutorotate
{
if (autorotate) {
return YES;
}
else
{
return NO;
}
}

因为 shouldAutorotateToInterfaceOrientation 现已弃用。

使用此方向将锁定在当前方向。

关于ios - iOS 中锁定/解锁方向变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22005069/

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