What is $(inherited) in Xcode’s search path settings?

If you go to Target Build Settings, and switch to Level view

Alt text

You can see the flow of inherited from right to left

Resolved <- Target <- xcconfig <- Project <- iOS Default

So in inherited in Target means that Target inherits settings from xcconfig and Project

Leave a Comment