使用检查设备方向的方法获取警告

发布于 2024-12-03 19:04:06 字数 1048 浏览 0 评论 0原文

谁能告诉我这段代码有什么问题吗?我试图确定设备所在的方向(纵向或横向)。谢谢。

- (void)checkOrientation
{
    UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];

    switch (orientation) 
    {
        case UIInterfaceOrientationPortrait:
            self.tableView.backgroundColor = [UIColor whiteColor];
            break;
        case UIInterfaceOrientationPortraitUpsideDown:
            self.tableView.backgroundColor = [UIColor whiteColor];
            break;
        case UIInterfaceOrientationLandscapeLeft:
            self.navigationController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background2.png"]]; 
            break;
        case UIInterfaceOrientationLandscapeRight:
            self.navigationController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background2.png"]]; 
            break;
    }
    [self.tableView reloadData];
}

警告

从枚举类型“UIDeviceOrientation”到不同枚举类型“UIInterfaceOrientation”的隐式转换

Can anyone tell me what is wrong with this code? I'm trying to determine what orientation (portrait or landscape, the device is in). Thanks.

- (void)checkOrientation
{
    UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];

    switch (orientation) 
    {
        case UIInterfaceOrientationPortrait:
            self.tableView.backgroundColor = [UIColor whiteColor];
            break;
        case UIInterfaceOrientationPortraitUpsideDown:
            self.tableView.backgroundColor = [UIColor whiteColor];
            break;
        case UIInterfaceOrientationLandscapeLeft:
            self.navigationController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background2.png"]]; 
            break;
        case UIInterfaceOrientationLandscapeRight:
            self.navigationController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background2.png"]]; 
            break;
    }
    [self.tableView reloadData];
}

Warning

Implicit conversion from enumoration type 'UIDeviceOrientation' to differnt enumeration type 'UIInterfaceOrientation

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

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

发布评论

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

评论(2

自控 2024-12-10 19:04:06

现在您已经发布了错误,问题就清楚了。此行:

[[UIDevice currentDevice] orientation];

返回 UIDeviceOrientation 的实例,而不是 UIInterfaceOrientation 的实例。要删除警告并更正代码,您可以将有问题的行更改为:

UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];

Now that you've posted the error, the problem is clear. This line:

[[UIDevice currentDevice] orientation];

returns an instance of UIDeviceOrientation, not an instance of UIInterfaceOrientation. To remove the warning and correct the code, you can change the offending line to this:

UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
送你一个梦 2024-12-10 19:04:06

如果此代码位于 viewController 下,您应该使用 self.interfaceOrientation 来完成工作。

If this code is under a viewController you should use self.interfaceOrientation to make the work.

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