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.
我有一个表格视图,在 viewDidLoad 时有 20 行。现在我有一个按钮可以在表格中再添加 1 行数据。此时我不想重新加载表格并希望显示最后一行的更新表格。可能吗?如果是,请帮助我。谢谢。
你可以这样做
[tableView beginUpdates]; [self.table insertRowsAtIndexPaths:path withRowAnimation:UITableViewRowAnimationRight]; [tableView endUpdates];