Totally Confused !!!...
I have one web-service that accepts the pageNumber as Parameter and gives me some records as JSON response. (This service basically implements the functionality of Paging for Silverlight version.) I want to load these pages one by one when user scrolls the UITableView (means Load the next 20 entries (or second page) when user scrolls).
My Problem :
How and Where to call this service and How to calculate pageNumber ?
According to me ,When user scrolls Down (to see Next 20 Records) , pageNumber should be increased (to get Next Page) and when user scrolls Up (to see Previous 20 Records) , pageNumber should be decreased (to get Previous Page).
But...
Where to write this code ?
Where to call web service ?
Note : I want Only 20 records at a time (if it's Possible) in an array that populates table.
I searched about this but didn't get any Satisfied answer.
What I found is :
How to call web service after each certain number of data received and load it into table view
Load more data from a web service when the user scrolls the UITableView
how to add elements to tableview on scrolling iphone?
I would Love to here your responses in Objective-C Language.
Any Suggestions ?

