0

NSMutableArray (以下の文字列の 1 つ) 内のオブジェクトをランダムに選択し、ランダムに選択されたオブジェクトのコンテンツを 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 に答える