I would like to know when a UITableView
did scroll to bottom in order to load and show more content, something like a delegate or something else to let the controller know when the table did scroll to bottom.
Does anyone know this, please help me, thanks in advance!
add this method in the
UITableViewDelegate
:Modified neoneyes answer a bit.
This answer targets those of you who only wants the event to be triggered once per release of the finger.
Suitable when loading more content from some content provider (web service, core data etc). Note that this approach does not respect the response time from your web service.
I generally use this to load more data , when last cell starts display
Building on @Jay Mayu's answer, which I felt was one of the better solutions:
Objective-C
Swift 2.x
I want perform some action on my any 1 full Tableviewcell.
So the code is link the :
May this is help to some one.
Neoneye's answer worked best for me in Objective C, this is the equivalent of the answer in Swift 3: