[bash gutter=”0″]
$ pod install
Updating local specs repositories
Analyzing dependencies
・・・
[!] Pods written in Swift can only be integrated as frameworks; add `use_frameworks!` to your Podfile or target to opt into using it. The Swift Pod being used is: ****
[/bash]
CocoaPods において Swift で書かれたライブラリを導入すると上記のようなエラーになります。メッセージの通り、Podfile に use_frameworks! を記述する必要があります。ただし、Swift ライブラリを CocoaPods で扱うには Deployment の Target が 8.0 以上というのが条件です。
Podfile の内容を
[bash]
platform :ios, "8.0"
pod ‘****’
・・・
[/bash]
を
[bash highlight=”2″]
platform :ios, "8.0"
use_frameworks!
pod ‘****’
・・・
[/bash]
このようにして再度 pod install を実行します。
[adsense]
[bash gutter=”0″]
$ pod install
Updating local specs repositories
Analyzing dependencies
・・・・
Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.
[/bash]
うまくいきました。あとは、ライブラリを導入するクラスにて import **** と記述することで使用できます。