I am using libiVisualizationChart.a library, there are separate libraries for iphoneos and iphonesimulator. I have added both the libraries in xcode project and mentioned both the library paths in Library Search Path, but I am able to build for simulator only not for device. Can any one help me why I am getting the linking error?

Error:

  "_OBJC_CLASS_$_VSColor", referenced from:


      objc-class-ref-to-VSColor in ChartView.o


  "_OBJC_CLASS_$_VSTransform3D", referenced from:


      objc-class-ref-to-VSTransform3D in ChartView.o
link|improve this question
feedback

2 Answers

up vote 12 down vote accepted

You can try by changing the order of libraries in the Library Search Path in build settings. For device build iphoneos library should be above to iphonesimulator library and vice-versa.

let it should work.

link|improve this answer
feedback

Make sure that they are weak linked. In your project settings, under Build Phases, there is "Link Binary With Libraries" find the two libraries and set them to optional. This should clear up that linking error.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.