Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 번역
- MySQL
- 개발
- techEmpower
- java
- H2O
- 개발자
- 한글
- 안드로이드
- centOS7
- 해석
- android
- mariadb
- caddy
- error
- it
- kakao
- 컴퓨터과학총론
- Portfolio
- ubuntu
- C
- 구글
- 자바
- NGINX
- 프래그먼트
- server
- php
- unity
- javascript
- C lanuage
Archives
- Today
- Total
개발모음집
Alamofire install 본문
# sudo gem install cocoapods
# source 'https://github.com/CocoaPods/Specs.git'
# open -e podfile
# pod setup
# touch podfile
# open -e podfile
// podfile에 기록할 텍스트 시작
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target 'xcode프로젝트명' do
pod 'Alamofire', '~> 4.7'
end
// podfile에 기록할 텍스트 끝
# pod install
출처 : http://jepark-diary.tistory.com/12
product-clean 후 xcode를 종료한 후에 finder에서 해당 프로젝트의 경로에 들어가 프로젝트명.xcworkspace 파일로 xcode 프로젝트를 실행시켰다.
그래도 cannot load underlying module for 'alamofire' 에러가 발생했다.
그냥 product -build로 빌드해주니 에러 해결
출처 : https://jwkcp.github.io/2017/03/22/cocoapods_with_alamofire/
'TheRestDevelop' 카테고리의 다른 글
android Studio에서 Unity AR 기능 구현하기 (0) | 2018.11.01 |
---|---|
shaka player 설치하는 법 (0) | 2018.10.17 |
용어정리 (0) | 2018.09.09 |
Prototype table cells must have reuse identifiers (0) | 2018.09.07 |
테이블뷰 만들기 (0) | 2018.09.06 |