This is a follow-up to this question: possible to have a CocoaPods have a search path that includes the main app
I\'d like to add add a User Header Search Path
User Header Search Path
Add this code to your .podspec file:
.podspec
s.xcconfig = { 'USER_HEADER_SEARCH_PATHS' => '"${PROJECT_DIR}/.."' }
To set path recursive:
recursive
s.xcconfig = { 'USER_HEADER_SEARCH_PATHS' => '"${PROJECT_DIR}/.."/**' }
I did Google and this issue on GitHub helped me.