gpt4 book ai didi

iphone - iOS 6 自动旋转仅适用于多个 ViewController 应用程序中的 SingleViewController

转载 作者:行者123 更新时间:2023-12-03 19:54:16 24 4
gpt4 key购买 nike

有没有办法为 SingleViewController 提供自动旋转,因为我们的 iPhone 应用程序有多个 ViewController,并且只需要为一个 ViewController 进行自动旋转。

最佳答案

是的,您可以用于 VC(不旋转)

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

{
//return (interfaceOrientation == UIInterfaceOrientationPortrait);
return NO;
}
// New Autorotation support for iOS 6.
- (BOOL)shouldAutorotate NS_AVAILABLE_IOS(6_0);
{
Return NO;
}

另请参阅Apple Doc这会很有帮助。

关于iphone - iOS 6 自动旋转仅适用于多个 ViewController 应用程序中的 SingleViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13507056/

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