segue의 실행 여부를 결정
Tells the delegate a row is about to be selected.
optional func tableView(_ tableView: UITableView,
willSelectRowAt indexPath: IndexPath) -> IndexPath?
tableView
A table view informing the delegate about the impending selection.
An index path locating the row in tableView.
An index path that confirms or alters the selected row. Return an IndexPath other than indexPath if you want another cell to be selected. Return nil if you don't want the row selected.
The system calls this method after a user has lifted their finger; the row is highlighted on the initial touch, but only selected when the touch withdraws. You can use UITableViewCell.SelectionStyle.none to disable the appearance of the cell highlight on the initial touch. The system doesn’t call this method if the rows in the table aren’t selectable. See Handling Row Selection in a Table View for more information on controlling table row selection behavior.