Skip to content

Instantly share code, notes, and snippets.

@shepting
Created October 26, 2011 20:02
Show Gist options
  • Save shepting/1317627 to your computer and use it in GitHub Desktop.
Save shepting/1317627 to your computer and use it in GitHub Desktop.
Good Random Numbers in Objective C
#import <stdlib.h>
for (int i=0; i<20;i++) {
NSLog(@"%i", arc4random_uniform(74));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment