Library No error found for iOS device in Xcode

I try to run the application on the device, but it gives an error for the device to work, which is perfect for the iPhone simulator.

ld: warning: directory not found for option '-L/Users/Documents/TEST/../CorePlotDemo/CorePlotDemo'
ld: warning: directory not found for option '-L/Users/TEST/../CorePlotDemo/CorePlotDemo'
ld: library not found for -lsqlite3.0
clang: error: linker command failed with exit code 1 (use -v to see invocation)

How to solve this error, I also tried the library path, but did not work.

+5
source share
1 answer

Add libCorePlot-CocoaTouch.a library

And set the path in the assembly Settings → Search path → Library path → $ (inherited) "$ (SRCROOT) / Libs / CorePlot"

This is the path libCorePlot-CocoaTouch.a.

+7
source

All Articles