景观中的一个视图发出警告

发布于 2024-10-18 21:37:57 字数 565 浏览 2 评论 0原文

我的应用程序中只需要一个视图即可横向显示,一切正常,但我收到一条警告,我想摆脱它,这是该视图的视图控制器中的代码..

在 viewDidLoad 中

       [[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeLeft];

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

但我得到了警告

UIDevice 可能不会响应 -setOrientation:

在我的 viewDidLoad 中,

它可以工作,但我不喜欢这个警告,所以如何解决这个问题?

多谢!!

I need just one view in my app to show in landscape, all is working but Im getting a warning I would like to get rid off, this is the code in the view controller for that view..

in viewDidLoad

       [[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeLeft];

and,

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

but I get the warning

UIDevice may not respont to -setOrientation:

in my viewDidLoad,

it works, but I dont like that warning, so how to fix this please??

thanks a lot!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故人的歌 2024-10-25 21:37:57

这是因为 UIDevice 上的方向属性是只读的,您不应该设置它。

阅读Max 发布的链接来查找设置应用程序以横向模式运行的正确方法。

That is because the orientation property on UIDevice is read-only and you should not be setting it.

Read the Link that Max posted to find the proper way to set up an application to run in landscape mode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文