0
1

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 3 years have passed since last update.

CocoaPodsを使う

Posted at

Swiftでcocoapodsを使う機会があったので、後のために忘備録として。。

##cocoapod のインストール
ターミナルを開き
$ sudo gem install cocoapods

##cocoapod をプロジェクトに追加する
pod init

##cocoapodに追加するライブラリを追加する
$ vi Podfile
で追加するライブラリをファイル内に記入
記入例: pod 'ライブラリ名'

$ pod install

##インストール時の注意点
ライブラリによっては、warninngが出ることがあるので、バージョン指定がある場合は、必ずpod install前に記入すること。

0
1
0

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?