Xcode游乐场与Cocoapods

时间:2016-07-06 04:15:01

标签: ios xcode cocoapods swift-playground

我正在尝试将cocoapods导入我项目的Xcode游乐场,但是尽管找到了一些解决方案,但似乎没有一个在Xcode 7.3.1中有效。

例如我已经尝试过建议here,但我在操场上导入时出错:

  

“没有这样的模块”

1 个答案:

答案 0 :(得分:1)

您可以使用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