Library not found Error when simple building web socket chat in iOS?

374 views Asked by At

i downloaded simple web socket chat code and am getting this error

  ld: library not found for -lPods-SocketRocket
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Please anyone tell me how to solve this?

In my other linker flags contains these things

link

My code

1

There are 1 answers

1
cyberlobe On

It seems like its not getting the path right of some of the library used here.

Do 1 thing:

  • Go to Targets -> Build Phases -> Link Binary with library -> Add library.

Note:

  • Make sure remove the old path before this process from Library search path

Hope it will work for you.