1

我正在创建一个tableview基于应用程序。

tableview我有 6 个部分。在这些部分下有一些行。

我也有UIButtons每个部分。

现在,当我单击UIButton特定部分时,它将调用带有文本字段的警报。当我输入行名称并按确定时,它将在该特定部分中插入行。我用文本字段创建了警报。但是当我尝试其余的时,它不会显示该行。我该怎么办???我已经被困在这几天了。

提前致谢。

4

1 回答 1

0

If you are inserting or removing any row or section in your tableView then you need to update your tableView's dataSource and then populate through it in cellForRowAtIndexPath: method by calling `[self.tableView reloadData].

于 2013-10-29T08:01:08.430 回答