Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 rivejä
693 B

4 vuotta sitten
  1. # -*- mode: snippet -*-
  2. # name: uiTableViewDelegate
  3. # key: uitableViewDelegate
  4. # --
  5. // MARK: UITableViewDelegate
  6. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  7. }
  8. func tableView(_ tableView: UITableView,
  9. heightForRowAt indexPath: IndexPath) -> CGFloat {
  10. }
  11. func tableView(_ tableView: UITableView,
  12. heightForHeaderInSection section: Int) -> CGFloat {
  13. }
  14. func tableView(_ tableView: UITableView,
  15. heightForFooterInSection section: Int) -> CGFloat {
  16. }
  17. func tableView(_ tableView: UITableView,
  18. viewForHeaderInSection section: Int) -> UIView? {
  19. }
  20. func tableView(_ tableView: UITableView,
  21. viewForFooterInSection section: Int) -> UIView? {
  22. }