iPhone,检查常量是否存在

发布于 2024-09-08 02:23:49 字数 112 浏览 2 评论 0原文

如何检查常量是否在运行时设置?例如,在 iOS 4 中,UIApplicationDidEnterBackgroundNotification 可用,但在 iOS 3 上运行时,如果您尝试使用它,则会出现错误。

How can you check if a constant is set at runtime? For instance, in iOS 4, UIApplicationDidEnterBackgroundNotification is available, but when running on iOS 3 it will through an error if you try to use it.

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

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

发布评论

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

评论(1

初与友歌 2024-09-15 02:23:49

您可能应该看看 这个其他问题,我认为这也是回答你的。 if (&UIApplicationWillEnterForegroundNotification != NULL) 应该是动态链接安全的,并告诉您常量是否存在。

You should probably look at this other question, which in my opinion also answers yours. if (&UIApplicationWillEnterForegroundNotification != NULL) should be dynamic-linking-safe and tell you whether the constant exists or not.

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