skip to Main Content

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.

2

Answers


  1. 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.

    Login or Signup to reply.
  2. just a note.. it happens when archving, not in debug.
    may be optimisations remove debug info ? ;(

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search