Dalvik
Dalvik

Reputation: 217

issue with using Core Plot in XCode6.1

I followed each step successfully from here. I am able to import

#import "CorePlot-CocoaTouch.h"

But When I Build My Project I get linker Error.How I can resolve this error.

Here is the screenshot of the error that i am getting:

enter image description here

Upvotes: 0

Views: 96

Answers (1)

Eric Skroch
Eric Skroch

Reputation: 27381

Those missing symbols are from the Accelerate framework. Recent Core Plot builds require your app to link that framework, too.

Upvotes: 1

Related Questions