"没有这样的模块"在swift playground中导入pod时

时间:2016-03-05 19:16:01

标签: xcode cocoapods swift-playground

使用Xcode 7.2.1。

我正在按照本教程获取pod在操场上工作。我已将操场添加到工作区中,并且podfile正在链接到操场。

但导入仍然无效 - "没有这样的模块"

https://littlebitesofcocoa.com/138-using-cocoapods-in-xcode-playgrounds

//导入不起作用

enter image description here

// Podfile
target 'spaceships' do
end

platform :ios, '9.0'
use_frameworks!
link_with 'spaceships', 'imports', 'test'

https://github.com/mingyeow/ImportToPlaygroundDoesNotWork

1 个答案:

答案 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将可用。

enter image description here