Xcode游乐场与Cocoapods

问题描述 投票:1回答:1

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

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

“没有这样的模块”

ios xcode cocoapods swift-playground
1个回答
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
© www.soinside.com 2019 - 2024. All rights reserved.