77
70

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Swift PlaygroundでCocoaPodsのライブラリを使う

Last updated at Posted at 2015-03-19

※Xcode 6.2

xcworkspaceをつくる

pod installしてあれば出来ています。
Swiftが含まれているPodを使う場合はPodfileにuse_frameworks!が必須になっています。
まだ変えていない場合はpod installしなおします。(deployment targetがiOS 8以上の必要があります)

xcworkspaceにPlaygroundファイルを追加する

File -> New -> File... -> Playground で

playgroundファイルにimportを追加

PodfileでインストールしたPodの名前でimport

import AsakusaSatellite

このままだとフレームワークが見つからないエラーが出ています。

Podのframeworkをビルドする

デフォルトではPodのframeworkのスキームは見えていません。
Scheme -> Manage Schemes...
で,Pods-AsakusaSatellite のShowをチェックします。

Screen Shot 2015-03-19 at 21.40.26.png

追加したスキームの64bitシミュレータを選択してビルドします。(iPhone 6など)

これでPlaygroundでimportのエラーがなくなります。

Play!

Screen Shot 2015-03-19 at 21.06.45.png

See Also

77
70
5

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
77
70

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?