英文:
What do these Xcode warnings mean?
问题
以下是翻译好的部分:
我在构建我的应用程序时,在Xcode中收到以下警告(但应用程序仍然正常运行):
无法将调试注释关联到原子
l_OBJC_LABEL_PROTOCOL_$_NSObject无法将调试注释关联到原子
l_OBJC_PROTOCOL_REFERENCE_$_CAAction无法将调试注释关联到原子
l_OBJC_LABEL_PROTOCOL_$_CAAnimationDelegate无法将调试注释关联到原子
l_OBJC_PROTOCOL_REFERENCE_$_CAAnimationDelegate无法将调试注释关联到原子
l_OBJC_PROTOCOL_REFERENCE_$_NSObject无法将调试注释关联到原子
l_OBJC_LABEL_PROTOCOL_$_CAAction
我在我的应用程序中尝试使用Core Data,并收到了这些警告。我认为它们出现在我尝试使用Xcode调试器之后,但不确定。
英文:
I’m getting the following warnings in Xcode when building my app (app runs just fine however):
> Could not associate debug note to atom
> l_OBJC_LABEL_PROTOCOL_$NSObject
>
> Could not associate debug note to atom
> l_OBJC_PROTOCOL_REFERENCE$CAAction
>
> Could not associate debug note to atom
> l_OBJC_LABEL_PROTOCOL$CAAnimationDelegate
>
> Could not associate debug note to atom
> l_OBJC_PROTOCOL_REFERENCE$CAAnimationDelegate
>
> Could not associate debug note to atom
> l_OBJC_PROTOCOL_REFERENCE$NSObject
>
> Could not associate debug note to atom
> l_OBJC_LABEL_PROTOCOL$_CAAction
I’ve searched the internet but haven’t found any similar threads on this warnings. Maybe someone can help out :)?
Tinkering around with Core Data in my app and getting this warnings. I think they appeared after I played around with the xcode debugger. Not sure tho.
答案1
得分: 1
只是一个提示..这发生在归档时,而不是在调试中。
也许优化会移除调试信息? ;(
英文:
just a note.. it happens when archving, not in debug.
may be optimisations remove debug info ? ;(
答案2
得分: 0
这种类型的错误通常在 Xcode 无法将调试信息关联到特定符号或引用时发生。
尝试执行 清理并重新构建项目 或 重新启动 Xcode。
英文:
This type of error generally occur when Xcode is unable to associate debug information to specific symbols or references.
try to do clean and rebuild your project or restart the Xcode.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论