File: uitableviewdelegate

package info (click to toggle)
yasnippet-snippets 0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,904 kB
  • sloc: lisp: 118; sh: 13; ada: 5; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (4)
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? {

}