1. Cocoa Pods 설치 및 Xcode프로젝트 설정 예제
만약 cocoapods이 설치되어 있고 setup이 끝난 상태라면 setup 다음 단계부터 진행한다.
맥의 터미널에서 다음 명령어를 실행한다.
$ sudo gem install cocoapods
Password: ***
일련의 설치 과정이 지난다. 다음, pod setup명령을 실행한다.
$ pod setup
Setting up CocoPods master repo작업과 함께 Setup이 진행된다.
Setup completed
Xcode에서 샘플 프로젝트를 생성하고 생성된 디렉토리로 이동 한 다음 PodFile을 생성한다.
$ pod init
Podfile이 생성된걸 확인 후 편집한다. (편집은 편한대로 ~ )
Podfile내용 중, pod 'Alamofire', '~> 4.7' 은 Swift에서 사용하는 네트워크 관련 외부 라이브러리를 설정하는 예이다.
# Uncomment the next line to define a global platform for your project
platform :ios, '10.1'
target 'mibank' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for mibank
pod 'Alamofire', '~> 4.7'
pod 'SwiftyJSON'
end
$ pod install
추가된 의존성 주입이 완료되면
Pods폴더와 Podfile.lock파일이 생성되고,
프로젝트명.xcworkspace 파일이 생성된다.
이후 Xcode에서 프로젝트를 열때는 .xcworkspace파일을 오픈하면된다.
'프로그래밍 > Xcode-iOS' 카테고리의 다른 글
NSMutableAttributedString UILabel글자색을 마음대로 ^^ (0) | 2019.05.20 |
---|---|
iOS _OBJC_CLASS_$_ASIdentifierManage referenced from: objc-class-ref in (0) | 2019.04.27 |
iOS 위젯 만들기 (Today Extension) 준비 과정. (0) | 2018.11.15 |
ios WebView 설정, next focus가능하도록 설정. (0) | 2018.10.19 |
UIColor+Hexcode (0) | 2018.09.13 |