使用按钮和动态文本在表视图中添加单元格

时间:2017-11-03 20:38:44

标签: ios objective-c uitableview cocoa-touch row

我有一个字符串,我想用一个按钮动态地在表格视图中添加一个单元格,使用该字符串作为按钮的标题。

我找到了这段代码:

[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];

但它什么也没做。

1 个答案:

答案 0 :(得分:0)

基本上,这应该可以胜任。但你可能以前忘了这样做:

self.tableView.dataSource = self;