I\'m trying to create an array of strings that can be randomized and limited to a certain x number of strings.
If the array could be randomized I could pick the firs
As of Xcode 4.4, you can use Array Literals, which are much cleaner and easier to read. You no longer need to include 'nil'. For example:
NSArray *myArray = @[@"1", @"2", @"3", @"4", @"5"];