gpt4 book ai didi

iPhone 开发人员以编程方式设置设备方向错误

转载 作者:行者123 更新时间:2023-12-03 21:03:51 26 4
gpt4 key购买 nike

我用它来设置设备方向,

[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];

但它发出警告:

Implicit Conversion from enumeration type "UIInterfaceOrientation" to different enumeration type "UIPrintInfoOrientation"

另外,我认为由于警告而发生的问题是,当我运行应用程序时,模拟器启动但保持黑色并且应用程序不运行,并且它显示“附加到'aap名称'”,什么也没有发生,现在我想为某些 View 设置设备方向。指导我,有什么方法或解决办法吗?

最佳答案

我认为你应该使用:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 

通知您的每个应用程序的 View Controller 接受的设备方向,例如

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

关于iPhone 开发人员以编程方式设置设备方向错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9877824/

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