从TableView创建多个分段

时间:2016-07-07 01:02:24

标签: ios xcode tableview

我目前正在尝试了解如何从每个tableviewcell创建不同的segue到各个视图控制器。

这是我的TableViewController: -

enter image description here

1 个答案:

答案 0 :(得分:1)

首先,在StoryBoard init中根据您的需求进行细分。然后,代码如下:

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    tableView.deselectRowAtIndexPath(indexPath, animated: true)
    if indexPath.row == 0{
        performSegueWithIdentifier("showA", sender: indexPath.row)
    }else {
        performSegueWithIdentifier("showB", sender: indexPath.row)
    }
}