1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# -*- mode: snippet -*-
# name: uiTableViewDelegate
# key: uitableViewDelegate
# --
// MARK: UITableViewDelegate
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
}
func tableView(_ tableView: UITableView,
heightForRowAt indexPath: IndexPath) -> CGFloat {
}
func tableView(_ tableView: UITableView,
heightForHeaderInSection section: Int) -> CGFloat {
}
func tableView(_ tableView: UITableView,
heightForFooterInSection section: Int) -> CGFloat {
}
func tableView(_ tableView: UITableView,
viewForHeaderInSection section: Int) -> UIView? {
}
func tableView(_ tableView: UITableView,
viewForFooterInSection section: Int) -> UIView? {
}
|