错误提示:Type ‘ChartDataSet’ does not conform to protocol ‘RangeReplaceableCollection’
解决方案如下:
extension ChartDataSet: RangeReplaceableCollection方法添加代码
public func replaceSubrange<C>(_ subrange: Swift.Range<Int>, with newElements: C) where C :
Collection, ChartDataEntry == C.Element {
}
此时运行就不会报错了
2023.11.7号–MACOS14.3+系统,上传新的APP到商店报错,如下:
解决方案如下:
在Xcode项目中 Pods -> Targets Support Files -> Pods-项目名 -> Pods-项目名-frameworks 中(大约在第44行)将
source="$(readlink "${source}")"
替换为
source="$(readlink -f "${source}")"
,OK,可以再次运行项目到商店打包了!