Is it possible to refresh some cells without refreshing other cells in a table view?
I need to delete and insert and add some cells simultaneously. For that i want to refresh the table frequently.
[self.tableView reloadData];
Thanks in Advance....
Yes, try - (void)reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
. See also: insertRowsAtIndexPaths:withRowAnimation:
, deletetRowsAtIndexPaths:withRowAnimation:
.