gpt4 book ai didi

ios - 如何在ios9中禁用旋转

转载 作者:行者123 更新时间:2023-12-01 18:10:06 24 4
gpt4 key购买 nike

我想禁用我的应用的旋转功能,这在iOS 9中可以使用。

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskPortrait;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation

NSNumber *value = [NSNumber numberWithInt:UIInterfaceOrientationLandscapeLeft];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];

但没人能用谁知道?

最佳答案

<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>

在Plist文件中添加以上键,然后根据需要添加方向。

例如,我添加了一个。

关于ios - 如何在ios9中禁用旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33236682/

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