我有一个字符串,我想用一个按钮动态地在表格视图中添加一个单元格,使用该字符串作为按钮的标题。
我找到了这段代码:
[self.array addObject:@"string"];
[self.tableView beginUpdates];
NSArray *arr = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:self.array.count-1 inSection:0]];
[self.tableView insertRowsAtIndexPaths:arr withRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView endUpdates];
但它什么也没做。
答案 0 :(得分:0)
基本上,这应该可以胜任。但你可能以前忘了这样做:
self.tableView.dataSource = self;