iPhone,检查常量是否存在
如何检查常量是否在运行时设置?例如,在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能应该看看 这个其他问题,我认为这也是回答你的。
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.