Hi phone development
Hi phone development

Reputation: 21

What is Header Search Path in Xcode 4.3? How to use it?

I want to add one existing project into my new project. I have added if using "Add files to "Project". When I'm going to import it's .h file in my new .h file. It say file not found. I have tried to add Path for Header file in Header Search Path in Search Path. But I don't know how.

Upvotes: 1

Views: 1188

Answers (1)

AppleDelegate
AppleDelegate

Reputation: 4249

Suppose u have included a third party library or files say "JSONKit" whose path is outside the project folder and have added in your project then you have to specify that particular folder path in your header search path,else you will get an error.below is an example of it

enter image description here

Upvotes: 1

Related Questions