如何根据swift中的披露指示获取不同的导航控制器

时间:2015-02-27 14:28:50

标签: iphone xcode swift

我对迅捷很新。我在表格视图中添加了披露指标。我想让不同的披露指标导致不同的视图控制器。任何人都可以帮我这个吗?

1 个答案:

答案 0 :(得分:0)

将您的ViewController与故事板中的多个ViewControllers连接,为每个故事板提供一个标识符。然后在确定用户选择了哪个单元格时调用self.performSegueWithIdentifier。例如:

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    if indexPath.row == 0 {
         self.performSegueWithIdentifier("yourIdentifier", sender: self)
    }
    ...
}