1 2 3 4
char symbols[4] = {'a','b','c','d'}; int idx = arc4random()%4; char var = symbols[idx]; NSLog(@"%c", var);