Skip to content

Instantly share code, notes, and snippets.

@frank-lsf
Created July 7, 2014 23:48
Show Gist options
  • Save frank-lsf/36cf4dc65333b51be34a to your computer and use it in GitHub Desktop.
Save frank-lsf/36cf4dc65333b51be34a to your computer and use it in GitHub Desktop.
Switch in Obj C
switch (x) {
case 1:
//...
case 2:
//...
default: // catches everything else
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment