gpt4 book ai didi

iphone - 支持的界面方向和 shouldAutorotateToInterfaceOrientation

转载 作者:行者123 更新时间:2023-11-28 20:21:47 25 4
gpt4 key购买 nike

在我的项目设置中,我将支持的界面方向设为横向。

我是否仍应在每个 View Controller 中实现以下内容?

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}

最佳答案

iOS < 6.x

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation // Deprecated in iOS 6.x 
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}

iOS > 6.x

- (BOOL) shouldAutorotate
{
return YES;
}

-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape;
}

希望这会有所帮助。

关于iphone - 支持的界面方向和 shouldAutorotateToInterfaceOrientation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15629829/

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