我正在尝试将cocoapods导入我的项目中的Xcode游乐场,但是尽管找到了一些解决方案,但似乎没有一个在Xcode 7.3.1中工作。
例如,我尝试了here的建议,但我在操场上导入时出错:
“没有这样的模块”
您可以使用ThisCouldBeUsButYouPlaying或将其添加到您的Podfile
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CONFIGURATION_BUILD_DIR'] = '$PODS_CONFIGURATION_BUILD_DIR'
end
end
end