What does it mean when you check on “Recursive” in Header Search Paths

If you give Xcode a path to use for headers, it will check that path when you use an #include or #import statement. If the file isn’t there, it quits.

If you have the path set as “recursive”, Xcode will search folders it finds there if it doesn’t find the file.

Looks like this:

enter image description here

Leave a Comment