1.第三方庫的使用swift
用到的文件中須要:import Alamofire.net
不考慮blog
用到的文件中須要:import AFNetworkingget
用到的文件中須要:#import "AFNetworking.h"it
可是在swift使用OC第三方時用Pod引入時曾碰見過一個問題,報錯找不到該文件。io
通常網上的步驟都是:編譯
1,建立橋接文件,import
2,配置文件路徑配置
可是編譯時報錯:file
出現問題的緣由是podfile文件中少了一句:use_frameworks!
完整的代碼爲:
target 'DaiChaoHeZi' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for DaichaoSwift
pod 'SAMKeychain', '~> 1.5.3'
pod 'BMKLocationKit'
pod 'MJRefresh'
end
參考連接:https://blog.csdn.net/kangpengpeng1/article/details/79164155