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]
Just use NSArray instead of normal C array then it will solve your problem easily.