I am needing to store a heap of int[] for my levels.
I decided that storing the int[]\'s in an NSMutableArray and getting a random one from the array would be a good
Use NSNumber to store int in an NSMutableArray.
Here's sample code :
// Add [yourMutableArray addObject:[NSNumber numberWithInt:yourInt]]; // Get yourInt = [((NSNumber*)[yourMutableArray objectAtIndex:0]) intValue];