XCode 7, Swift 2.0, iOS 9를 실행하고 있습니다.
Cocoapods를 사용하여 프로젝트에 Alamofire를 설치하고 싶습니다. 다음을 수행했습니다.
gem install cocoapods
pod setup
pod init
Podfile을 다음으로 업데이트했습니다.
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
use_frameworks!
target 'JSONeg' do
pod 'Alamofire', :branch => 'swift-2'
end
그런 다음 포드를 설치했습니다.
pod install
그리고 ViewController.swift에 다음을 추가했습니다.
import Alamofire
이로 인해 다음 오류가 발생합니다.
Cannot load underlying module for 'Alamofire'
다른 포드로 테스트했는데 동일한 오류가 발생했기 때문에 Cocoapods 설치에 문제가 있다고 생각합니다. 어떤 도움이라도 대단히 감사하겠습니다.