当tableview中有不同的单元格时,如何在tableview中重新加载单行?

时间:2016-03-01 13:11:20

标签: objective-c

我有一个tableview,其中有3个不同的单元格...我想加载仅第二行的数据所以请帮助我如何在目标c中重新加载特定的单行tableview? 提前谢谢!

2 个答案:

答案 0 :(得分:4)

NSIndexPath* rowToReload = [NSIndexPath indexPathForRow:2 inSection:0];
NSArray* rowsToReload = [NSArray arrayWithObjects:rowToReload, nil];
[yourTableView reloadRowsAtIndexPaths:rowsToReload withRowAnimation:UITableViewRowAnimationNone];

希望这会对你有所帮助

答案 1 :(得分:0)

使用[tableView reloadRowsAtIndexPaths: withRowAnimation:];

as:

[tableView reloadRowsAtIndexPaths:arrayOfIndexPaths withRowAnimation:UITableViewRowAnimationFade];