Tôi đang chạy XCode 7, Swift 2.0, iOS 9.
Tôi muốn cài đặt Alamofire trong dự án của mình bằng Cocoapods. Tôi đã làm như sau:
gem install cocoapods
pod setup
pod init
Đã cập nhật Podfile thành:
# 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
Sau đó, tôi đã cài đặt nhóm:
pod install
Và tôi đã thêm phần sau vào ViewController.swift
import Alamofire
Điều này làm phát sinh lỗi sau:
Cannot load underlying module for 'Alamofire'
Tôi đã thử nghiệm với một pod khác và nó phát sinh lỗi tương tự, vì vậy tôi đoán vấn đề là do cài đặt Cocoapods. Mọi sự trợ giúp sẽ rất được trân trọng.