答案 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”