![截图] https://imgur.com/a/D4hBy37
从屏幕截图中可以看到,我在右侧有多个收藏夹视图。它们全部导致相同的segue模板,我需要区分数据,但我无法弄清楚
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if(segue.identifier=="cardToDiscover" && sender is BaroqueData){
let toViewController = segue.destination as! PlacesInDepthViewController
let indexPath = sender as! IndexPath
toViewController.section = baroqueData.sections[indexPath.row]
}
}
baroqueData是一个模型,其中包含数据,但对于屏幕快照上显示的每个集合视图都应有所不同。