swift - UITableView Pagination without JSON or XML -


how add pagination property uitableview without json or xml? don't understand code:

override func scrollviewwillenddragging(scrollview: uiscrollview, withvelocity velocity: cgpoint, targetcontentoffset: unsafemutablepointer<cgpoint>) {     if scrollview == tableview {         if ((scrollview.contentoffset.y + scrollview.frame.size.height) >= scrollview.contentsize.height) {             if !isnewdateloading {                 if helperinstance.isconnectedtonetwork() {                     isnewdateloading = true                     getnewdate()                 }             }         }     } } 

in this article. helperinstance, isconnectedtonetwork, , getnewdate?

i want tableview this: pagination tableview or lazy loding


Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -