init
This commit is contained in:
34
snippets/swift-mode/uitableviewdelegate
Normal file
34
snippets/swift-mode/uitableviewdelegate
Normal file
@@ -0,0 +1,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? {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user