Skip to content

Instantly share code, notes, and snippets.

@franklsf95
Created July 7, 2014 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save franklsf95/36cf4dc65333b51be34a to your computer and use it in GitHub Desktop.
Save franklsf95/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