Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Last active October 1, 2021 09:56
Show Gist options
  • Save AppleCEO/9720adb56b2cf08c6d81a4732caeb1af to your computer and use it in GitHub Desktop.
Save AppleCEO/9720adb56b2cf08c6d81a4732caeb1af to your computer and use it in GitHub Desktop.
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
guard let restaurantGrade = RestaurantGrade(rawValue: section) else {
return nil
}
restaurantGradeName = restaurantGrade.getName()
return restaurantGradeName
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment