up vote 1 down vote favorite
share [g+] share [fb]

I have seen some examples of the random int in Objective-C, but all people are complaining about the same number sequence every time the application runs. I have read about seeding the random number, but I am not sure what that even means.

How can a random number be generated differently every time, even after application has relaunched?

Could some data be stored in NSUserDefaults and then, depending on that, different values get generated?

link|improve this question

Possible duplicate of another SO article, Generating Random Numbers in Objective-C – Rafe Kettler Jul 23 '10 at 21:42
feedback

3 Answers

up vote 4 down vote accepted

Here's a discussion on the Apple developer forums.

Use arc4random() instead of either random() or rand(). It used /dev/urandom and generates much better pseudo-random numbers. Both rand() and random() are basically bad random number generators.

See: man arc4random

#include <stdlib.h>
picknumber = arc4random() % 3 + 1; 
link|improve this answer
how can I get a random between 1 and 10 using arc4Random()? – Helium3 Jul 23 '10 at 23:53
picknumber = arc4random() % 10 + 1; – jcolebrand Aug 12 '10 at 19:50
feedback

You can seed your random with the following code:

srand([[NSDate date] timeIntervalSince1970]);

This will give you a new random sequence every time.

link|improve this answer
feedback

I've been using arc4random, which you don't need to seed. You can give it a try.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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