2

I am using Cocoapods for dependency resolution in an iOS project.

The problem I am having is that the compiler is unable to find the correct subdirectory where the headers are located.

See in the image below the directory in which the compiler is searching for the header file:

/Users/Scott/Documents/GitHub/ios-demo/Pods/iOS-KML-Framework

However, the file is in the subdirectory /Users/Scott/Documents/GitHub/ios-demo/Pods/iOS-KML-Framework/KML. How do I specifically enable that subdirectory to be searched? I have tried suggestions here and here but those did not seem to work.

Any help would be greatly appreciated!

Community
  • 1
  • 1
scottysseus
  • 1,922
  • 3
  • 25
  • 50

1 Answers1

1

try set Header Search Path or Library Search Path in Building Setting:

enter image description here

alpine
  • 927
  • 6
  • 17