Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am parsing data to a table view,there are lakhs of names in server page,i have two questions

  1. Firstly i did (with help of php programmer) write all the server data in different pages in server side,and i put a "View more" button under the table view.When user click that,the page number will be increased to one and data on second page is shown to the table view. At that time i am loosing all the first page data on table view. How can i append previous datas to table view when i click "View More".

  2. If i write all the names in single page in server side, Can i call the data to TableView without memory problems (just like first 10rows and when i scroll down all other data are appending without memory problems)

share|improve this question

1 Answer

up vote 2 down vote accepted

@amar I think its possible with UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

I am not sure,please check out and clarify...

share|improve this answer
Nithin that way you will be optimizing the way cells are shown i have issues with your data source as you said you are using a NSMutable array.In this case individual data might be small so that even lakhs of them do not create problem(which i doubt).What will you do if you have images? – amar Nov 4 '12 at 7:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.