i’want to use pagination in a controller that displays posts downloaded from a server so that I don’t download all posts together . Any help on how to achieve this?
Asked
Active
Viewed 117 times
-3
-
https://stackoverflow.com/questions/37537463/how-to-add-pagination-in-uitableview – Rafał Sroka Jan 19 '18 at 20:55
1 Answers
0
I tend to use this library for swift.
https://github.com/pronebird/UIScrollView-InfiniteScroll
tableView.addInfiniteScroll { [weak self] (tableView) -> Void in
// update table view, pagination.
}

iOSCodeJunkie
- 191
- 1
- 4
-
what about a solution without third party libraries? I'm trying to look at this repo code to implement my own solution but I'm not familiar with objective c – mrc Jan 20 '18 at 08:57