使用分段控件的 TableView 可重用性

发布于 2024-11-02 20:36:53 字数 250 浏览 1 评论 0原文

我有一个视图/窗口,顶部有一个 2 分段按钮,下面有一个视图。

当我单击第一个按钮时,带有一些数据的表格视图将加载到下面的视图中。现在,当我单击第二个按钮时,我想使用同一个表,但我想添加更多部分/行。

问题是当我单击第一个按钮时,会加载表格视图并调用行/节数方法。但是,当我单击第二个按钮时,不会调用这些方法,因为每当加载表时它们只会被调用一次。

所以基本上我得到了相同的行数。我可以使用两个不同的表格视图来完成此操作,但我只想使用一个。

I have a view/Window which has a 2 segmented button on the top and a view below it.

When I click on the first button, the tableview with some data gets loaded on the view below. Now I want to use the the same table when I click on the 2nd button, but I want to add a few more section/rows.

The problem is when I click the first button the tableview gets loaded and the number of rows/sections method gets called. But when I click on the second button, those methods aren't called because they are called just once whenever a table is loaded.

So basically I get the same number of rows. I can do this with two different tableviews but I would like to use just one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必了 2024-11-09 20:36:53

如果您重新加载表数据,这些方法将被再次调用。您可以使用以下命令来执行此操作:

[self.tableView reloadData];

Those methods will be called again if you reload the table data. You can do this using this command:

[self.tableView reloadData];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文