我对迅捷很新。我在表格视图中添加了披露指标。我想让不同的披露指标导致不同的视图控制器。任何人都可以帮我这个吗?
答案 0 :(得分:0)
将您的ViewController与故事板中的多个ViewControllers连接,为每个故事板提供一个标识符。然后在确定用户选择了哪个单元格时调用self.performSegueWithIdentifier。例如:
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
if indexPath.row == 0 {
self.performSegueWithIdentifier("yourIdentifier", sender: self)
}
...
}