多次执行以下步骤但没有得到结果。 我尝试删除 Pod 并再次安装。 清理项目 -> 删除 DerivedData -> 打开项目。
“YOChartImageKit”框架可能无法构建。这是因为它是一个非常古老的图书馆。 podspec 表明最低部署目标是 iOS 7.0。基于此(https://developer.apple.com/forums/thread/728021),较新的 Xcode 版本不再支持针对此类旧部署目标进行构建。
我建议将以下代码片段添加到您的 podfile 中:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
我能够通过这种方式成功构建它。但是,我想指出的是,这个库非常旧(废弃软件)。使用前请考虑这一点。