# -*- 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? {

}