I've been trying to create program in Objective-C to return random value between specific minimum to maximum value.
I've searched online and found out people are using arc4random_uniform instead of random() or rand().
My question is how arc4random is different from random()? random() is definitely easier to remember and I get same result from both arc4random and random()
Thank You. Regards.