<UITableViewDelegate> tableView(_:willSelectRowAt:)

dlsl7380·2021년 7월 20일
0

Instance method

목록 보기
12/19

segue의 실행 여부를 결정

tableView(_:willSelectRowAt:)

Tells the delegate a row is about to be selected.

Declaration

optional func tableView(_ tableView: UITableView, 
        willSelectRowAt indexPath: IndexPath) -> IndexPath?

Parameters

tableView
A table view informing the delegate about the impending selection.

indexPath

An index path locating the row in tableView.

Return Value

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.

Discussion

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.

0개의 댓글

관련 채용 정보