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 have lots of data and lots of rows in my tableView. when data changes I want to update my visible cells on the screen, I really don't want to use reloadData because it's an expensive call.

Is it possible to somehow update the visible cells only? I tried calling : beginUpdate & endUpdate on the table, but that doesn't work all the time?

Any suggestions?

share|improve this question
Are you sure reloadData is expensive? I'd expect it to be quite cheap, as long as you're not using variable heights. It's going to query how many sections you have in the table, how many rows in each section, and purge its cache. But cells will be reloaded on demand, which means only the visible cells should be reloaded. – Steven Fisher Oct 18 '11 at 1:12
If you going to refresh all the visible cells then reloadData shouldn't be that expensive. – Nevin Oct 18 '11 at 1:16
@StevenFisher Yes in my case it's very expensive, I have lots of calculation, such as required height of the cells, and some web calls. So I probably should have said it's expensive for my case. – aryaxt Oct 18 '11 at 6:09
Yeah, if you're doing variable height cells, it's probably very expensive. Thanks for clarifying. :) – Steven Fisher Oct 18 '11 at 17:15

1 Answer

up vote 24 down vote accepted

You can:

[tableView reloadRowsAtIndexPaths:[tableView indexPathsForVisibleRows] 
                 withRowAnimation:UITableViewRowAnimationNone];
share|improve this answer
very nice, thanks. This is a perfect solution specially when it comes to reloading a single cell. – aryaxt Oct 18 '11 at 6:05

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.