我有一个tableview,其中有3个不同的单元格...我想加载仅第二行的数据所以请帮助我如何在目标c中重新加载特定的单行tableview? 提前谢谢!
答案 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];