Skip to content

Instantly share code, notes, and snippets.

@troyharris
Last active December 20, 2015 15:09
Show Gist options
  • Save troyharris/6152507 to your computer and use it in GitHub Desktop.
Save troyharris/6152507 to your computer and use it in GitHub Desktop.
Get a random letter in Objective-C
// Get a random capitol letter
[NSString stringWithFormat:@"%c", arc4random_uniform(26) + 'A'];
//...or lowercase
[NSString stringWithFormat:@"%c", arc4random_uniform(26) + 'a'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment