UISegmentedControl - 如何在 2 个 UITableView 之间切换
我有一个基于选项卡栏的应用程序。 在 2 个不同的 UITableView 视图之间切换的最佳方法是什么?
我是否应该使用包装视图并将这两个视图添加到其中,具体取决于哪个部分 被选中的我会表现出正确的观点吗?
仅使用一个 tableView 是行不通的,因为它们之间的布局不同 2 个表格视图。
谢谢
I have a tab bar based application.
What is the best way to toggle between 2 different UITableView views?
Should I use a wrapper view and add those 2 views to it and depending on which segment
was chosen I will show the correct view?
Using only one tableView will not work because the layout is different between those
2 tableviews.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常采用不同的方法:我更喜欢对 tableView 的单个实例使用不同的数据源,然后在它们之间切换(通常通过在分段控件上选择不同的索引)。
再次,只是给您一个示例:
然后在实现文件中:
问候。
I usually take a different approach: I prefer to use different dataSources for a single instance of tableView and then switching between them (usually by selecting a different index on a segmentedControl).
Again, just to give you a sample:
then in the implementation file:
Regards.