ios - How to use reloadRowsAtIndexPaths? -
i have seen code around lots not sure how implement it.
[self.tableview beginupdates]; [self.tableview reloadrowsatindexpaths:@[indexpathofyourcell] withrowanimation:uitableviewrowanimationnone]; [self.tableview endupdates];
is possible use change font size of individual cell in table populated dynamically?
i have row number of cell want change , want change font size on timer after x seconds of 1 cell in table. possible?
yes:
[self.tableview reloadrowsatindexpaths:@[[nsindexpath indexpathforrow:rownumber section:0]] withrowanimation:uitableviewrowanimationnone];
this assuming have code in cellforrowatindexpath
method conditionally change font size.
Comments
Post a Comment