17 lines
380 B
Swift
17 lines
380 B
Swift
import TableKit
|
|
|
|
class ManualLayoutViewController: BaseViewController {
|
|
|
|
override var layoutType: String {
|
|
return "Manual Layout"
|
|
}
|
|
|
|
override func rows(width: CGFloat) -> [Row] {
|
|
return Array(0...100)
|
|
.map {
|
|
TableRow<ExpandableManualLayoutCell>(item: BaseExpandableCellViewModel(index: $0, width: width))
|
|
}
|
|
}
|
|
|
|
}
|