PagingTableView icon indicating copy to clipboard operation
PagingTableView copied to clipboard

Unable to make it call delegate method

Open erdemgc opened this issue 6 years ago • 4 comments

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?

erdemgc avatar Jun 22 '18 11:06 erdemgc

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 avatar Oct 11 '18 08:10 webnizam

@webnizam @erdemgc

You need to call tableView.dequeueReusableCell(withIdentifier: "yourcellindentifier", for: indexPath) this method in your cellForRow method to trigger the delegate method.

rex3du avatar Feb 12 '19 20:02 rex3du

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

jvv-ab avatar Feb 26 '19 12:02 jvv-ab

same problem here

dtashkandi avatar Sep 11 '19 10:09 dtashkandi