0

I want to use InAppSettings in my iOS project. So I copied the InAppSettings folder into my project folder.

When I type

#import "InAppSettings.h"

xcode auto completes the import correctly. But after that it shows me that the file was not found. I copied the InAppSettings folder into the root folder of my project.

The file structure:

enter image description here

I want to import it in FirstViewController.m

Any idea how to fix this?

DarkLeafyGreen
  • 69,338
  • 131
  • 383
  • 601

1 Answers1

1

Last time the problem was that i imported the classes into eachother which makes XCode give that error. Could that be it?

Manuel
  • 10,153
  • 5
  • 41
  • 60
  • Ok, I had this exact error which was removed by removing one of the imports. Guess yours has another reason. – Manuel Nov 07 '11 at 22:05