Skip to content

Instantly share code, notes, and snippets.

@badlands
Created April 2, 2014 14:42
Show Gist options
  • Save badlands/9935569 to your computer and use it in GitHub Desktop.
Save badlands/9935569 to your computer and use it in GitHub Desktop.
Random number in Objective-C
// Kudos to: http://stackoverflow.com/questions/160890/generating-random-numbers-in-objective-c
#include <stdlib.h>
#define MAX 10
int r = arc4random() % MAX;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment