Skip to content

Instantly share code, notes, and snippets.

@daniloc
Created May 14, 2019 18:48
Show Gist options
  • Save daniloc/f857f3f359ebc10b768de4eca5cb30c2 to your computer and use it in GitHub Desktop.
Save daniloc/f857f3f359ebc10b768de4eca5cb30c2 to your computer and use it in GitHub Desktop.
enum TableSections: Int, CaseIterable {
case staticSection,
dynamicSection
func title() -> String {
switch self {
case .staticSection:
return "Static Cells"
case .dynamicSection:
return "Dynamic Cells"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment