Cannot load underlying module for 'Result'

在 Swift 中使用 RAC 时,通过 cocopod 导入 ReactiveSwift时,会报上述错误。
解决方案:
在 podfile 文件内加入 use_frameworks!

platform :ios, '11.0'

use_frameworks!

target 'RAC_SwiftDemo' do
    
    pod 'ReactiveSwift'
    
end

你可能感兴趣的:(Cannot load underlying module for 'Result')