본문 바로가기

iOS

[iOS]Pods framework not found ... error

1. CocoaPods 다운로드

- sudo gem install cocoapods


2. CocoaPods 설치

- pod setup


3. CocoaPods profile 생성

- pod init


4. 생성된 CocoaPods 
profile 에 라이브러리 설정

# platform :ios, '6.0'  <-- 주석임

target '프로젝트명' do

    pod '라이브러리명'

end


5. CocoaPods 라이브러리 설치

- pod install


6. CocoaPods 
갱신

- pod update



위 1~6 모두 실행 후 기존 실행하던 .xcodeproj 대신 새로 생성된 .xcworkspace 를 실행해준다.


끝.