- Xcode에서 추가
- File -> Swift Packages -> Add Package Dependency 를 클릭 → git url 복사 → 끝
- CocoaPods 사용
-
cocoapods 설치 (Terminal)
sudo gem install cocoapods
-
프로젝트 폴더로 이동 후 initialization
cd path pod init
-
프로젝트 폴더에 생성 된 Podfile 열기
vi podfile
# Uncomment the next line to define a global platform for your project # platform :ios, '9.0' target 'Address-Finder' do pod 'Alamofire', '~> 4.4' # Comment the next line if you don't want to use dynamic frameworks use_frameworks! # Pods for Address-Finder end
- target ‘project-name’ do 아래에 설치하고 싶은 라이브러리 이름과 버전 작성
d. 설치
pod install
e. 설치가 끝나면, 폴더에 생성 된 projectName.xcworkspace 오픈
f. 라이브러리 import
import UIKit import Alamorfire
-