To be more specific here is my code
-(IBAction)randomnumber {
int rNumber1 = rand() % 10;
textview1.text=[[NSString alloc] initWithFormat:@"%d", rNumber1];
int rNumber2 = rand() % 10;
textview2.text=[[NSString alloc] initWithFormat:@"%d", rNumber2];
int rNumber3 = rand() % 10;
textview3.text=[[NSString alloc] initWithFormat:@"%d", rNumber3];
int rNumber4 = rand() % 10;
textview4.text=[[NSString alloc] initWithFormat:@"%d", rNumber4];
}
and this is the just of what i want to do with the first int...
NSArray *keys = [NSArray arrayWithObjects:
@"A" @"B"...
int rNumText1 = rand() % 10 or keys;
textview1.text=[[NSString alloc] initWithFormat:@"%d", rNumText1];
So basically I want a text "Label" to output either a random A-Z or a random 1-9 after the user hits a button on the ipod.
For example I could have 16 of these things and each would randomly chose between outputting a number or outputting a letter, then pick that random letter or number to output like this:
number, letter, letter, number, etc and the next time letter, letter, number, letter, etc
You can do something like so:
Or more compactly: