我尝试通过Cocoapods将FMDBx(目标C框架)添加到我的Swift项目中。这就是我的Podfile的样子:
# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'GBU' do
pod 'GoogleMaps'
pod 'Alamofire'
pod 'RxSwift', '~> 2.0.0-beta'
pod 'RxCocoa', '~> 2.0.0-beta'
pod 'RxBlocking', '~> 2.0.0-beta'
pod 'SwiftyJSON'
pod 'RxAlamofire'
pod 'AlamofireImage'
pod 'FMDB'
pod 'FMDBx'
end
当我尝试构建项目时,我遇到的问题很少。它听起来像“包含非模块化头框架模块FMDBx.FMXDatabaseConfiguration”。我 我试图将“允许框架模块中的非模块化包含”设置为“是”,但它没有解决我的问题。