使用分段控件的 TableView 可重用性
我有一个视图/窗口,顶部有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您重新加载表数据,这些方法将被再次调用。您可以使用以下命令来执行此操作:
Those methods will be called again if you reload the table data. You can do this using this command: