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.

[Swift5] Cocoapodsインストール

Last updated at Posted at 2021-03-28

Cocoapodsインストール

sudo gem install cocoapods
pod setup

プロジェクトにライブラリを設定

cd /Users/XXX/your_xcode_directory
pod init

Podfile編集

vim Podfile
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'XXXXX' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for XXXXX

# ここに追加したいライブラリを設定
pod 'SwiftyJSON'
pod 'Alamofire'
pod 'SDWebImage'

end

Xcodeでライブラリを利用

以下のxcode workspaceファイルを開いてコードを利用
image.png

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?