iOS Swift - Lists and Data Display
What will be displayed as the footer text for section 0 given this implementation?
func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? {
if section == 0 {
return "End of first section"
}
return nil
}
