如何检查某项功能在特定 iOS 版本上是否可用?

发布于 2024-12-13 18:44:23 字数 491 浏览 0 评论 0原文

在我的 AppDelegate 中,我使用外观代理来制作自定义 UI:

//Setup custom appearances
    [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"header"] forBarMetrics:UIBarMetricsDefault];
    [[UINavigationBar appearance] setTintColor:[UIColor blackColor]];
    [[UIToolbar appearance] setBackgroundImage:[UIImage imageNamed:@"header"] forToolbarPosition:UIToolbarPositionAny barMetrics:UIBarMetricsDefault];

这将在 iOS4 中崩溃。如何检查此功能在他们运行的 iOS 版本上是否可用,以便避免崩溃?

In my AppDelegate I am using the appearance proxy to make custom UI:

//Setup custom appearances
    [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"header"] forBarMetrics:UIBarMetricsDefault];
    [[UINavigationBar appearance] setTintColor:[UIColor blackColor]];
    [[UIToolbar appearance] setBackgroundImage:[UIImage imageNamed:@"header"] forToolbarPosition:UIToolbarPositionAny barMetrics:UIBarMetricsDefault];

This will crash in iOS4. How can I check if this feature is available on the iOS version they are running, so I can avoid the crash?

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

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

发布评论

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

评论(2

朱染 2024-12-20 18:44:23

不要检查操作系统,检查该功能是否存在。

if ([[UINavigationBar 类] respondsToSelector:@selector(appearance)]) {}

Don't check the OS, check if the capability exists.

if ([[UINavigationBar class] respondsToSelector:@selector(appearance)]) {}

天冷不及心凉 2024-12-20 18:44:23

试试这个:

[UIDevice currentDevice].systemVersion

Try this:

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