0

我想知道如何在 NSMutableArray(下面的字符串之一)中随机选择一个对象,并使随机选择的对象的内容成为 UITextView 的内容。下面是我的代码:

NSMutableArray *quotes = [[NSMutableArray alloc] initWithObjects:
                   @"Text 1",
                   @"Text 2",
                   @"Text 3",
                   @"Text 4",
                   @"Text 5",
                   @"Text 6",
                   @"Text 7",
                   @"Text 8",
                   @"Text 9",
                   @"Text 10",
                   nil];

textView.text = // And then I would like to know how to randomly select one of the objects within the quotes Array

提前谢谢你!

4

1 回答 1

1

你可以使用这样的东西:

int randomIndex = arc4random() % quotes.count;
textView.text = [quotes objectAtIndex:randomIndex];
于 2012-04-10T10:07:07.993 回答