RxTableViewSectionedAnimatedDataSource
UITableViewを使用すると、次のエラーが発生しますrx_itemsAnimatedWithDataSource()
。
エラーのスクリーングラブは次のとおりです。
タイプ「(RxTableViewSectionedAnimatedDataSource)」の引数リストで「rx_itemsAnimatedWithDataSource」を呼び出すことはできません
タイプ '(DataSource)' の引数リストが必要です
self.dataSource
タイプは次のとおりです。
RxTableViewSectionedAnimatedDataSource< DateSelectorSectionModel>
DateSelectorSectionModel
および関連するタイプ用に生成されたインターフェースは次のとおりです。
typealias DateSelectorSectionModel = SectionModel<SectionDesc, SectionDesc>
enum SectionType {
case StartDate, EndDate, TimeZone, AllDay
}
enum SectionState {
case Present, Missing, Dirty
}
enum SectionSelection {
case NotSelected, Selected
}
struct SectionDesc {
var type: SectionType
var state: SectionState
var selectionState: SectionSelection
init(type: SectionType, state: SectionState, selection: SectionSelection)
public func getSectionModel() -> DateSelectorSectionModel
}
extension EventDetailsDateSelectorViewModel {
public var rows: RxCocoa.Driver<[DateSelectorSectionModel]> { get }
}
何か案は?ありがとう!