Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在外部显式调用索引路径处的行的表视图单元格。任何人都可以帮助我。我已经调用了使用[索引路径处的表视图对象单元格];
默认情况下,简单地重新加载表视图将触发表委托方法。
[self.tableview1 reload];
如果要刷新特定单元格,请使用以下命令:
[self.tableView1 beginUpdates]; [self.tableView1 reloadRowsAtIndexPaths:indexPath] withRowAnimation:UITableViewRowAnimationNone]; [self.tableView1 endUpdates];