在我的应用程序中,我在ParentViewController中有一个分段控件和一个容器。容器中有一个名为ChildTableViewController的TableViewController。我需要根据分段控件更改表中的数据。
问题:我有一个段控制操作设置,但我不确定如何引用子进程运行reloadData()或者在分段控件更改时以某种方式有一个在TableViewController中运行的触发器。
//MARK: IBActions
@IBAction func segmentedControlAction(sender: AnyObject) {
print(segmentedControl.selectedSegmentIndex)
}
此代码根据我点击
的部分打印0,1或2答案 0 :(得分:0)
在segmentControlTapped
操作方法中,您将获得selectedSegmentIndex
的{{1}}属性。使用此属性值切换UISegmentedControl
的{{1}},如下所示:
dataSource