如何使用分段控件对 swift 中的 table 进行排序

How to sort the table in swift using segmented control

我想问一下用于重新加载排序的 table 视图而不是使用 swift 重新加载普通视图的方法。我知道我必须使用分段控件来表示 table 中的类别,但逻辑是什么?代码如何? 我放一张图来表达我的意思

编辑:我的问题是关于在 swift 的一个视图控制器中使用两个 table 视图,分段控件用于在单击 0 段时显示第一个 table第二个 table 当第 1 个片段被点击时,我找到了任何感兴趣的人的答案: 1- 向视图控制器添加两个 table 视图。 2-隐藏其中之一。 3- 在 vi​​ewDidLoad 函数中加载两个 tables 并填充它们的单元格。 4- use the segment control to change the hidden 属性 of the first table to true while the other table is false when the first segment is selected and vice versa when the other segment is selected .

希望对您有所帮助。

尝试: segmentControl 在新的 UIView 和 self.tableView.tableHeaderView = newView on viewDidLoad() 方法中创建。