Skip to content

Commit fa01b73

Browse files
committed
print section and row
1 parent 1ca5a8c commit fa01b73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReverseExtensionSample/ReverseExtensionSample/ViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ extension ViewController: UITableViewDataSource {
8080
func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
8181
let messages = sections[indexPath.section]
8282
let message = messages[indexPath.row]
83-
print("willDisplay: \(message)")
83+
print("willDisplay: \(message) at (section: \(indexPath.section), row: \(indexPath.row)")
8484
}
8585
}
8686

0 commit comments

Comments
 (0)