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 have created an .Plist titled PhobiaList.plist. Im unsure of how i would implement the plist so that when button1 is pressed it will show a random entry into lable1?

share|improve this question
Do you mean a random entry from the plist? – Max Mar 19 '12 at 8:46
yes. and then to display the random entry to my uilabel – user1277828 Mar 19 '12 at 8:57
ok. i hope my answer below can help you. otherwise just ask what you did't understand. – Max Mar 19 '12 at 9:01

1 Answer

up vote 2 down vote accepted

Let's say you have an array stored in your plist. Then you can generate a random number between 0 and [theArray count].

NSInteger randomIndex = arc4random() % [theArray count];

Select the string by calling.

NSString* yourRandomString = [theArray objectAtIndex:randomIndex];
share|improve this answer

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.