Guest User

Untitled

a guest
Jan 24th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. print(tableView.headerView(forSection: 0) ?? "nil")
  2. print(tableView.footerView(forSection: 0) ?? "nil")
  3.  
  4. func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?
  5.  
  6. func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView?
  7. func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat
  8.  
  9. override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
  10. return 0
  11. }
  12.  
  13. tableView.delegate = self
Add Comment
Please, Sign In to add comment