Objective C: Do I have to import arc4random ( )?

999 Views Asked by At

I'm trying to generate a random number between 0 and 3 by saying

int i = arc4Random() % 3;

but it keeps giving me the warning "implicit declaration of function 'arc4Random' is invalid in c99

2

There are 2 best solutions below

0
On

Try it without the capital r

int i = arc4random() % 3;
0
On

You have a capital "R" in arc4Random. Should be: int i = arc4random % 3;.