PagingTableView
PagingTableView copied to clipboard
Unable to make it call delegate method
Hello,
I have set everything like in example. Unfortunately,
func paginate(_ tableView: PagingTableView, to page: Int) {
}
method does not being called when I am at the end of the uitableview.
What might be the wrong?
Hello,
I have set everything like in example. Unfortunately,
func paginate(_ tableView: PagingTableView, to page: Int) { }
method does not being called when I am at the end of the uitableview.
What might be the wrong?
I'm facing the same issue. Have you found any solution?
@webnizam @erdemgc
You need to call tableView.dequeueReusableCell(withIdentifier: "yourcellindentifier", for: indexPath) this method in your cellForRow method to trigger the delegate method.
I am also facing the same issue. Sometimes it calls, but most of the time it does not call paginate method. I have dequeue method in cellForRow.
let cell = latestTableView.dequeueReusableCell(withIdentifier: "postCell", for: indexPath) as! PostViewCell
same problem here