Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Created December 26, 2015 12:32
Show Gist options
  • Save MaximAlien/40f5917cf9f92221a1fc to your computer and use it in GitHub Desktop.
Save MaximAlien/40f5917cf9f92221a1fc to your computer and use it in GitHub Desktop.
[iOS] Random number
NSInteger randomNumber = arc4random() % 3;
switch (randomNumber)
{
case 0:
break;
case 1:
break;
case 2:
break;
default:
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment