I connect to a server and retrieve five rows of data and then show them up on my UITableView by using reloaddata of my UITableView. So far so good.
Then I am trying to retrieve another five rows from the server and I use again reloaddata of my UITableView. I see the new data on the UITableView but when i scroll down to see the previous data my table loads-redraw them again (the UITableView delegate redraws the objects while I scroll down). I want the previous data but I do not want to be redrawed to improve smoothness! Is there a way to reload data of my UITableView and as I scroll down to the previous data not to be redrawed ?
I want to reload just the last five i retrieve from my server not all data.
Any help appreciated.
if you want to reload only some particular rows use