在Podfile中定義一個方法:?
def append_header_search_path(target,path)
? ? target.build_configurations.each do |config|
? ? ? ? # Note that there's a space character after `$(inherited)`.
? ? ? ? config.build_settings["HEADER_SEARCH_PATHS"] ||= "$(inherited) "
? ? ? ? config.build_settings["HEADER_SEARCH_PATHS"] << path
? ? end
end
然后在post_install中調(diào)用該方法:
installer.pods_project.targets.each do |target|
? ? if target.name == "Specta"
? ? ? ? ? ? append_header_search_path(target,"$(PLATFORM_DIR)/Developer/Library/Frameworks")
? ? end
end