Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- RealmSwift
- programmers
- swift
- UITableView
- Pod
- pbxgroup
- 프로그래머스
- JSONSerialization
- Decodable
- PageViewController
- pbxfilesystemsynchronizedrootgroup
- storybaord
- dynamic height
- Codable
- 2018 KAKAO BLIND RECRUITMENT
- 정보처리기사 실기 요약본
- JSONParser
- cocoapods
- IOS
- Custom PageViewController
- 티스토리챌린지
- 위클리챌린지
- 정보처리기사
- issecuretextentry
- CustomCode
- SwiftGen
- JSON
- 정보처리기사 실기
- parse
- Xcode
Archives
- Today
- Total
iOS 개발일기
[Swift] Type 'ChartDataSet' does not conform to protocol 'RangeReplaceableCollection' 에러 해결 방법 본문
iOS/Swift
[Swift] Type 'ChartDataSet' does not conform to protocol 'RangeReplaceableCollection' 에러 해결 방법
맨날 까먹으니 적어두자 2024. 9. 25. 21:31
pod 업데이트 후 Charts 라이브러리에 에러가 발생하여 확인해보니 프로토콜을 준수하지 않는다고 합니다.
두번째 에러 내용을 보고 'replaceSubrange(_:with:)' 메소드를 추가하여야 된다 생각하여 메서드 내 작성할 내용을 알아보기 위해 검색을 해본 결과
public func replaceSubrange<C>(
_ subrange: Swift.Range<Index>,
with newElements: C
) where C : Collection, Element == C.Element {
entries.replaceSubrange(subrange, with: newElements)
notifyDataSetChanged()
}
위와 같이 작성하여 추가해주면 된다는 것을 확인했습니다.
참조
https://stackoverflow.com/questions/74010925/charts-not-compile-on-xcode-14
'iOS > Swift' 카테고리의 다른 글
[Swift] UITableView Dynamic Height (0) | 2024.12.26 |
---|---|
[Swift] 'didSelectItemAt' 함수가 호출되지 않는 이유 (2) | 2023.12.07 |
[Swift] Custom PageViewController (0) | 2022.03.22 |
[Swift] JSONParser - JSONSerialization (0) | 2022.03.16 |
[Swift] JSONParser - Decodable(2) (0) | 2022.03.15 |