dyld: Symbol not found: error how to resolve this issue

后端 未结 6 1660
無奈伤痛
無奈伤痛 2020-12-01 22:09

I have the following code (given below) where I am using NSURLConnection for connecting and parsing the response string. But I am getting the following error:

6条回答
  •  -上瘾入骨i
    2020-12-01 22:35

    I got the same error when I changed the suffix that my executable uses when loading frameworks from 'no' suffix to 'debug' suffix. I think the debug frameworks aren't being kept up to date by Apple.

    You might get bit this way if you are using 'debug' for other reasons, then add a framework whose debug version isn't up to date.

    As at XCode 3, the suffix setting is available in the "General" pane of your executable's "Get Info" window.

提交回复
热议问题