Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking to randomize the output from a plist file. I've read about arc4random(), but I'm not sure how to incorporate it into the code.

thanks for any help.

here's the code that's currently pulling 'objectAtIndex:0'

 -(IBAction) buttonPress {

    NSString *path = [[NSBundle mainBundle] pathForResource:@"messages" ofType:@"plist"];
    NSMutableArray *array = [[NSMutableArray alloc] initWithContentsOfFile:path];

    [myMessage setText:[array objectAtIndex:0]];
    NSLog(@"%@",array);
 }
share|improve this question

1 Answer

up vote 3 down vote accepted

The obvious thing to do is just use random():

[array objectAtIndex:random()%array.count]

arc4random() adds unnecessary complexity for little obvious benefit.

If you want values to be more random, you can call srandomdev() once (e.g. in main() or application:didFinishLaunchingWithOptions: or whatever) before calling random().

If you want "secure" random numbers, use SecRandomCopyBytes().

share|improve this answer
that worked perfectly, thank you! – hanumanDev Jul 21 '10 at 21:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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