모델 정의 collectionview cell에 들어갈 데이터의 모델을 정의한다. struct Model { var color: Int } SectionModel 정의 section을 구분할 열거형을 만들고 SectionModelType 프로토콜을 채택한다. Item의 타입과 items를 구현해야 한다. Item typealias를 정의한다. Item typealias는 section안에 들어갈 item의 타입과 동일하다. public protocol SectionModelType { associatedtype Item var items: [Item] { get } init(original: Self, items: [Item]) } 다중 섹션을 구현할 것이기 때문에 열거형으로 각 section에 들어갈 ..