ソースとしてを使用してUITableViewController
います。宛先は UITableView を持つ UIViewController です。
したいpush from (a) tableViewCell (in a custom cell of a tableview in .xib) to (b) viewController
。カスタム セルは、.xib ファイルで指定されます。コントロール ドラッグを使用してセグエを作成しようとしましたが、できません。
customCell から UIViewController にプッシュするにはどうすればよいですか? 私が試してみました
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath)
{
print("You selected cell #\(indexPath.row)!")
let destination = FestsViewController()
navigationController?.pushViewController(destination, animated: true)}