这些Xcode警告的含义是什么?

huangapple go评论59阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2023年6月13日 15:03:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/76462389.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定