ios – 使用CocoaPods post install hook将自定义路径添加到HEADER_SEARCH_PATHS

前端之家收集整理的这篇文章主要介绍了ios – 使用CocoaPods post install hook将自定义路径添加到HEADER_SEARCH_PATHS前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用post install hook将$(PLATFORM_DIR)/ Developer / Library / Frameworks路径添加到Specta目标Header搜索路径.这显然不是至关重要的,但每次我进行“pod update”时手动添加此路径真的很烦人.

我得到了以下脚本:

  1. post_install do |installer_representation|
  2. installer_representation.project.targets.each do |target|
  3. if target.name == 'Specta'
  4. target.build_configurations.each do |config|
  5. headers = config.build_settings['HEADER_SEARCH_PATHS']
  6. if headers
  7. config.build_settings['HEADER_SEARCH_PATHS'] += ' $(PLATFORM_DIR)/Developer/Library/Frameworks'
  8. end
  9. end
  10. end
  11. end
  12. end

如果有人能指出我正确的方向,我会很高兴,因为我真的被卡住了.

附:我已经注意到这条路径已经被CocoaPods添加了,但我仍然对如何做到这一点非常感兴趣,因为这些知识以后会很有用.谢谢!

解决方法

在Podfile中定义一个方法
  1. def append_header_search_path(target,path)
  2. target.build_configurations.each do |config|
  3. # Note that there's a space character after `$(inherited)`.
  4. config.build_settings["HEADER_SEARCH_PATHS"] ||= "$(inherited) "
  5. config.build_settings["HEADER_SEARCH_PATHS"] << path
  6. end
  7. end

然后在post_install中调用方法

  1. installer.pods_project.targets.each do |target|
  2. if target.name == "Specta"
  3. append_header_search_path(target,"$(PLATFORM_DIR)/Developer/Library/Frameworks")
  4. end
  5. end

猜你在找的iOS相关文章