Slide 78
Slide 78 text
extension NextPageLoadable where Self: UITableViewController {
func loadNext() {
guard nextPageState.hasNext else { return }
if nextPageState.isLoading { return }
nextPageState.isLoading = true
performLoad(successHandler: { rows, hasNext, lastId in
self.data += rows
self.nextPageState.update(hasNext: hasNext,
isLoading: false,
lastId: lastId)
self.tableView.reloadData()
}, failHandler: {
//..
})
}
}