2016-07-06 80 views
1

我想在我的项目中将Cocoapods导入Xcode游乐场,但是尽管找到了一些解决方案,但似乎在Xcode 7.3.1中没有任何工作。Xcode Cocoapods游乐场

比如我试过的建议here,但我得到一个错误在操场进口:

“没有这样的模块”

回答

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 
+0

感谢您的回复,但是这个解决方案在我的问题中引用的帖子中提到,并且在Xcode 7中无法使用。 3.1 – doovers

+0

尝试在你之前构建所有的豆荚方案。 – PGLongo