我想知道如何在 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
提前谢谢你!