Skip to content

Instantly share code, notes, and snippets.

@spadafiva
Created July 18, 2017 03:41
Show Gist options
  • Save spadafiva/a83da7b22b9b07a221b6ed792d979df3 to your computer and use it in GitHub Desktop.
Save spadafiva/a83da7b22b9b07a221b6ed792d979df3 to your computer and use it in GitHub Desktop.
enum Mode {
case viewing
case editing
case creating
var textfieldsEditable: Bool {
switch self {
case .editing, .creating: return true
case .viewing: return false
}
}
var secondaryButtonHidden: Bool {
switch self {
case .viewing: return true
case .editing, .creating: return false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment