如果我想从代码中打开集合视图的tableview中按单元格,该怎么办?

时间:2015-11-24 08:49:49

标签: ios xcode swift

这是我的故事板 enter image description here

这是上一个tableview的代码 enter image description here

2 个答案:

答案 0 :(得分:0)

你应该实施

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { 
                self.performSegueWithIdentifier("yourIdentifierHereFromStoryboard", sender: yourSender or nil ) }

答案 1 :(得分:0)

在PatientDetailTableViewController中,您可以实现tableview委托的func:

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    let collectionView = self.storyboard!.instantiateViewControllerWithIdentifier("CollectionViewController") as! CollectionViewController
    self.navigationController?.pushViewController(collectionView, animated: true)
}

并在您的故事板中,记住填充故事板ID:“CollectionViewController”