从表格单元格中发现没有做任何事情

时间:2015-04-17 00:26:06

标签: ios uitableview swift uistoryboardsegue

我有一个相当简单的问题。基本上,我正在使用表视图创建一个菜单,我希望每一行都是一个可点击的按钮,将用户带到相应的视图控制器。

我已经实现了应有的一切,但在点击单元格时没有任何反应。

这是我的代码:

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    if indexPath == 0 {
        performSegueWithIdentifier("Career", sender: self)
    } else if indexPath == 1 {
        performSegueWithIdentifier("Routine", sender: self)
    } else if indexPath == 2 {
        performSegueWithIdentifier("Skills", sender: self)
    } else if indexPath == 3 {
        performSegueWithIdentifier("Projects", sender: self)
    } else if indexPath == 4 {
        performSegueWithIdentifier("Interests", sender: self)
    }
}

我设置了正确的segue标识符,所以它应该可以正常工作,但某处必定存在问题。

有人有什么想法吗?

0 个答案:

没有答案