XCode 15 出现 No such module 'YOChartImageKit' 错误,即使项目中存在框架

问题描述 投票:0回答:1
  • 使用 YOChartImageKit 的 pod 仍然出现 No such module 的错误。 (https://i.stack.imgur.com/fuqw0.png)

多次执行以下步骤但没有得到结果。 我尝试删除 Pod 并再次安装。 清理项目 -> 删除 DerivedData -> 打开项目。

ios swift watchkit apple-m1 rosetta
1个回答
0
投票

“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

我能够通过这种方式成功构建它。但是,我想指出的是,这个库非常旧(废弃软件)。使用前请考虑这一点。

© www.soinside.com 2019 - 2024. All rights reserved.