Skip to content

Instantly share code, notes, and snippets.

@ktustanowski
Last active July 31, 2018 20:42
Show Gist options
  • Save ktustanowski/d69af51d7ef066ba363c15a78964a524 to your computer and use it in GitHub Desktop.
Save ktustanowski/d69af51d7ef066ba363c15a78964a524 to your computer and use it in GitHub Desktop.
@IBAction func selectCipher(_ sender: UISegmentedControl) {
guard let cipherName = CipherName(rawValue: sender.selectedSegmentIndex) else { return }
switch cipherName {
case .atbash:
break
default:
break
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment