This will save an array (I think).
- (void)encodeWithCoder:(NSCoder *)encoder {
[encoder encodeObject:myArray forKey:@"myArray"];
}
Do I have to directly call this method when I want to save an array or do I have to do something else?
|
This will save an array (I think).
Do I have to directly call this method when I want to save an array or do I have to do something else?
| ||||
feedback
|
|
You don’t call this method directly. It’s called by a | |||
|
feedback
|