75 |
76 |
77 |
78 |
DataSources
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 | -
88 |
95 |
96 |
97 |
98 |
99 |
100 |
A class for backporting UITableViewDiffableDataSource introduced in iOS 13.0+, tvOS 13.0+.
101 | Represents the data model object for UITableView that can be applies the
102 | changes with automatic diffing.
103 |
104 |
See more
105 |
106 |
107 |
Declaration
108 |
109 |
Swift
110 |
open class TableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType> : NSObject, UITableViewDataSource where SectionIdentifierType : Hashable, ItemIdentifierType : Hashable
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 | -
122 |
129 |
130 |
131 |
132 |
133 |
134 |
A class for backporting UICollectionViewDiffableDataSource introduced in iOS 13.0+, tvOS 13.0+.
135 | Represents the data model object for UICollectionView that can be applies the
136 | changes with automatic diffing.
137 |
138 |
See more
139 |
140 |
141 |
Declaration
142 |
143 |
Swift
144 |
open class CollectionViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType> : NSObject, UICollectionViewDataSource where SectionIdentifierType : Hashable, ItemIdentifierType : Hashable
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |