반응형
문제상황
SwiftUI의 Charts 라이브러리 사용 중 해당 오류 발생
해결
이 메서드를
extension ChartDataSet: RangeReplaceableCollection에 붙여넣는다.
public func replaceSubrange<C>(_ subrange: Swift.Range<Int>, with newElements: C) where C : Collection, ChartDataEntry == C.Element {
entries.replaceSubrange(subrange, with: newElements)
notifyDataSetChanged()
}
Ref
https://github.com/danielgindi/Charts/issues/4873
반응형
'🍎 iOS > 디버깅' 카테고리의 다른 글
Failed to load Info.plist from bundle (0) | 2024.03.06 |
---|---|
[iOS] 수출 규정 관련 문서 누락 (0) | 2023.08.10 |
Searching for inspections failed: undefined method `map' for nil:NilClass (0) | 2023.06.22 |
[M1이슈] Xcode 시뮬레이터 Rossetta 사용설정 (0) | 2023.06.21 |
File not found: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a 오류 해결 (0) | 2023.06.21 |