Parth Bhatt
Parth Bhatt

Reputation: 19479

Getting Error : " CorePlot-CocoaTouch.h: No such file or directory" while implementing Core-Plot in iPhone SDK

I am getting the following error when I try to implement Core-Plot in my iPhone app.

CorePlot-CocoaTouch.h: No such file or directory

I downloaded installed the Core-plot package from the below link

http://code.google.com/p/core-plot/w/list

Still it does not seem to work and gives error as mentioned above.

What could be wrong?

Upvotes: 1

Views: 2115

Answers (3)

Ishu
Ishu

Reputation: 12787

Use this link, and add -all_load and -Objc in other linker Flags (get info -> build (in linking section you find other linker flags)).

And give complete path in header search paths (in search path section) for your core-plot framework. Looks like .../core-plot/framework.

Upvotes: 2

Tarek Jradi
Tarek Jradi

Reputation: 101

Check at HEADER SEARCH PATHS if seted to recursive and not non-recursive

Upvotes: 0

Jacksonkr
Jacksonkr

Reputation: 32247

This helped as well

Header Search Paths -> "${PROJECT_DIR}/Your Project Name/CorePlot_0.9/Source/framework"

Upvotes: 1

Related Questions