使用Xcode 7.2.1。
我正在按照本教程获取pod在操场上工作。我已将操场添加到工作区中,并且podfile正在链接到操场。
但导入仍然无效 - "没有这样的模块"
https://littlebitesofcocoa.com/138-using-cocoapods-in-xcode-playgrounds
//导入不起作用
// Podfile
target 'spaceships' do
end
platform :ios, '9.0'
use_frameworks!
link_with 'spaceships', 'imports', 'test'
答案 0 :(得分:9)
不能直接回答您从本教程中获得的问题,但有一个新工具可以自动生成我经常使用的pods Playgrounds。
它名为 ThisCouldBeUsButYouPlaying ,来源为on GitHub。
基本上它扩展了CocoaPods安装程序,然后可以生成Playgrounds。
安装:
$ gem install cocoapods-playgrounds
使用Alamofire创建一个游乐场:
$ pod playgrounds Alamofire
创建一个包含多个pod的Playground:
$ pod playgrounds RxSwift,RxCocoa
新的Playground将自动打开。
您必须首先构建项目,启用播客,然后Playground将可用。