如何将 UITableViews 用于多个数据集

发布于 2024-12-07 10:46:08 字数 289 浏览 0 评论 0原文

我目前正在玩一个基于导航的应用程序。我希望允许用户通过在触摸时选择几个不同的 uitableview 单元格之一来构建搜索查询,将他们引导到一个子 uitableview,在其中我将显示数据供用户选择。

每个单元格将加载相同的子视图,但它将加载不同的数据集。我想知道处理数据转换的适当方法(当用户从​​子视图中选择单元格时,我如何控制数据应发送回哪个单元格?

我正在考虑将子视图传递到主视图的 Indexpath选定的单元格..然后将其传递回子视图从堆栈中弹出时,以便它知道数据需要在哪里..这是最好的解决方案还是他们的另一种方法?

I am currently playing around with a navigational based app. Where I want to allow the user to construct a search query by selecting one of several different uitableview cells when touched leads them to a sub uitableview where I will display the data for the user to select.

each cell will load the same subview however it will load it with different datasets. I am wanting to know an appropriate way of handling the transition of data (when the user selects the cell from the subveiw how can I control which cell that data should be sent back to?

I am thinking about passing the subview the Indexpath of the mainviews selected cell.. then passing it back to when the subview is poped from the stack so that it knows where the data needs to be.. is that the best solution? or is their another way of doing this?

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

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

发布评论

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

评论(1

差↓一点笑了 2024-12-14 10:46:08

是的,为主视图所选单元格的索引路径指定子视图的属性。在推送子视图之前,在主视图的 didSelectCell 方法中设置此属性。

将索引路径与数据一起传递回主视图后,您可以使用它

[self cellForRowAtIndexPath:indexPath] 

来访问正确的单元格。

Yes, give the subview a property for the indexPath of main view's selected cell. Set this property in the main view's didSelectCell method before pushing the subview.

Once you pass that indexPath back to the main view with you data, you can use

[self cellForRowAtIndexPath:indexPath] 

to access the correct cell.

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