How to generate random uppercase characters in Objective-C

后端 未结 3 893
清歌不尽
清歌不尽 2021-02-11 06:45

How can I generate 20 Uppercase characters randomly in my Objective-C iOS app?

3条回答
  •  旧巷少年郎
    2021-02-11 07:45

    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];
    

    Hope that answer this is what you want. :-)

    Alberto

提交回复
热议问题