如何在我的 Objective-C iOS 应用程序中随机生成 20 个大写字符?
问问题
711 次
3 回答
11
char c = (char)('A' + arc4random_uniform(25))
会给你一个随机的大写字符。
于 2012-05-12T05:11:35.923 回答
0
将所有大写字符存储在数组中,并使用 rand() 或 arcg4rand() 生成 0-25 的随机数,然后分别检索对象的随机编号索引。
于 2012-05-12T04:57:12.507 回答
0
NSMutableArray *a = [[NSMutableArray alloc] initWithObjects:@"A", @"B", @"C", @"D", @"E", nil]; // You can add more uppercases here.
int firstRandom = objectAtIndex:arc4random()%[a count];
NSString *s = [[NSString alloc] initWithFormat:@"%@", [a objectAtIndex:firstRandom]];
[a removeObjectAtIndex:firstRandom];
// Avoiding some uppercase repetitions. ;-)
for (int i = 0; i < [a count]; i++) {
int rndm = objectAtIndex:arc4random()%[a count];
s += [a objectAtIndex:rndm];
[a removeObjectAtIndex:rndm];
}
NSLog(@"%@", s);
[a release];
[s release];
希望这个答案是你想要的。:-)
阿尔贝托
于 2012-05-12T05:05:02.073 回答