Skip to content

Instantly share code, notes, and snippets.

@alladinian
Last active August 29, 2015 14:07
Show Gist options
  • Save alladinian/0937707e754539caf384 to your computer and use it in GitHub Desktop.
Save alladinian/0937707e754539caf384 to your computer and use it in GitHub Desktop.
Random label text
#import <Foundation/Foundation.h>
int main(int argc, char *argv[]) {
@autoreleasepool {
NSArray *array = [[NSMutableArray alloc] initWithObjects: @"abc", @"def", nil];
for (int i = 0; i < 100; i++) {
int randomArrayIndex = arc4random() % array.count;
NSLog(@"%@", array[randomArrayIndex]);
}
}
}
//-Output-
//========
//abc
//abc
//def
//abc
//abc
//def
//def
//abc
//abc
//def
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment