Is it possible to save an integer array using NSUserDefaults on the iPhone? I have an array declared in my .h file as: int playfield[9][11] that gets filled wi
int playfield[9][11]
You'll have to convert this to an object. You can use NSArray or NSDictionary.