I want to do a reloadData on a UITableView and after the table refresh is done, I want a delegate method to be called when I can know that the refresh is done. How do we know that ?
A:
-reloadData
blocks execution—your code won't continue past that call unless you're doing it on a separate thread. It should only be configuring nine cells or so at most; is there some reason you expect that to take a long time?
Noah Witherspoon
2010-01-15 21:19:54
Well, because when the table is down refreshing I would have like to scroll at a specific row... but now I'm doing this with a performInBackground after delay of 1 sec which more than enough for the table to be redrawn.
JFMartin
2010-01-22 01:33:26