我已经看过这个代码很多但不确定如何实际实现它。
[self.tableView beginUpdates];
[self.tableView reloadRowsAtIndexPaths:@[indexPathOfYourCell] withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];
是否可以使用它来更改动态填充的表格中单个单元格的字体大小?
我有要更改的单元格的行号,并希望在表格中只有一个单元格的x秒后更改计时器上的字体大小。这可能吗?
答案 0 :(得分:1)
是:
> which(signif(M,7) == -0.2382021, arr.ind=TRUE)
row col
[1,] 1 1
假设您的[self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:rowNumber section:0]] withRowAnimation:UITableViewRowAnimationNone];
方法中有代码可以有条件地更改字体大小。