I would like to do an infinite scroll on UITableViewController, I use a method scrollViewDidScroll:to check the contentOffset, however I cannot expand the offset, which would be the bottom ScrollView.
UITableViewController
scrollViewDidScroll:
Any suggestions?
Thanks in advance.
Assuming contentSize.height> bounds.size.height
if ( contentOffset.y >= contentSize.height - bounds.size.height ) { ... }
Source: https://habr.com/ru/post/1751805/More articles:Are input sanitization methods and parameterized queries interdependent? - language-agnosticSQL continues query execution after double key violation - sqlИспользование API last.fm в javascript - javascriptPrevent scrolling when video ad is enabled - javascriptSaving a heterogeneous array in C # - listHibernate - CDI - javaConfusion with Gravatar URLs - formatGrails and multi-threaded process - javaPerformance jQuery Clone - performanceGoogle Maps not working in Django template on App Engine development server - google-app-engineAll Articles