Possible Duplicate:
Is it possible to refresh a single UITableViewCell in a UITableView?
In a sequence I am updating only a particular object in my list data(NSMUtableArray), once updated its value, To make the GUI update, I was reloaded the full table like below...
[table reloadData];
It worked fine, However in efficiency point, it is hanging little bit while I am scrolling, Is there any way to update only a particular cell without reload full table?
thanks.