uitableview - Is it possible to refresh a portion of the ui table view without refresh other cells? -
is possible refresh cells without refreshing other cells in table view?
i need delete , insert , add cells simultaneously. want refresh table frequently.
[self.tableview reloaddata];
- this code used refresh cells in table think. i'm not sure this. because table contains huge amount of cell may take time reload cells.
thanks in advance....
yes, try - (void)reloadrowsatindexpaths:(nsarray *)indexpaths withrowanimation:(uitableviewrowanimation)animation
. see also: insertrowsatindexpaths:withrowanimation:
, deletetrowsatindexpaths:withrowanimation:
.
Comments
Post a Comment