Cocoapods 0.36及以上 引入了 use_frameworks!指令,这意味着在 Swift 中导入 Objective-C pods 不需要桥接头。
请参考以下使用 MBProgressHUD和 Alamofire的完整示例:
1. Podfile
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.3'
use_frameworks!
pod 'Alamofire', '>= 1.2.2' # Swift pod
pod 'MBProgressHUD', '>= 0.9.1' # Objective-C pod