使用故事板将prototypecell连接到不同的场景

时间:2015-06-10 05:28:12

标签: ios iphone

我正在使用故事板将我的原型单元连接到一个场景,我的表视图中的单元格将使用segue导致不同的场景,我的问题是我可以使用故事板来做到这一点因为通过故事板我能够连接原型单元只到一个场景。

1 个答案:

答案 0 :(得分:0)

这是similar question

看起来您需要将Table View Controller中的segue添加到目标视图控制器而不是从您的单元格。然后你可以在Table View Cell

中做这样的事情
tableview(tableview, didSelectRowAtIndexPath: indexPath) {
    if shouldSeguaToSceneAWithIndexPath(indexPath) {
        performSegueWithIdentifier("SegueA")
    else if shouldSeguaToSceneBWithIndexPath(indexPath)
        performSegueWithIdentifier("SegueB")
    else if shouldSeguaToSceneCWithIndexPath(indexPath)
        performSegueWithIdentifier("SegueC")
    }
}