Klimi's new dotfiles with stow.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

34 linhas
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? {
}