-4
文字列があり、ボタンのタイトルとして文字列を使用して、テーブルビューでセルを動的に追加したいと思います。テーブルビューにボタンとダイナミックテキストを含むセルを追加する
[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];
をしかし、それは何もしません:
私はこのコードを発見しました。