func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
tableView.deselectRowAtIndexPath(indexPath, animated: true)
let vc = self.storyboard?.instantiateViewControllerWithIdentifier("YourViewControllerID") as! UIViewController
self.navigationController?.pushViewController(vc, animated: true)
}