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.
 
 
 
 
 
 

34 lines
693 B

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