SwiftUI

xcode升级到14beta版本,Char框架报错,解决方案

2022-08-28  本文已影响0人  我是卖报的小行家

Unavailable instance method 'replaceSubrange(_:with:)' was used to satisfy a requirement of protocol 'RangeReplaceableCollection'

Type 'ChartDataSet' does not conform to protocol 'RangeReplaceableCollection'

解决方案:
// MARK: RangeReplaceableCollection
extension ChartDataSet: RangeReplaceableCollection 方法里补充

    public func replaceSubrange<C>(_ subrange: Swift.Range<Int>, with newElements: C) where C :
 Collection, ChartDataEntry == C.Element {
    }
上一篇下一篇

猜你喜欢

热点阅读