vote up 1 vote down star
3

What is the best way to generate random numbers using Objective C on the iPhone?
If I use (int)((double) rand() / ((double)(RAND_MAX) + (double) 1) * 5.0) to generate a number from 0 to 4, every time I start the program on the iPhone it generates the same numbers to start off with.

flag

73% accept rate

5 Answers

vote up 8 vote down check

There is a very similar question here on StackOverFlow. Here is one of the better solutions (no need for seeding):

int r = arc4random() % 4;
link|flag
vote up 2 vote down

i use

#define RANDOM_SEED() srandom(time(NULL))
#define RANDOM_INT(__MIN__, __MAX__) ((__MIN__) + random() % ((__MAX__+1) - (__MIN__)))

so you can give a min and max

link|flag
vote up 3 vote down

How random do you need? If you want random enough for crypto, then use SecRandomCopyBytes().

link|flag
vote up 2 vote down

You should seed the random number generator with the current time.

srand(time(0));
link|flag
vote up 1 vote down

Call srand() at the start of your program, it'll reseed random number generator

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.