Hello,
Can i decode and encode an array in ths way??
NSMutableArray *arr;
-(void)encodeWithCoder:(NSCoder*)coder
{
[coder encodeInt:arr forKey:@"Array"];
}
-(id)initWithCoder:(NSCoder*)decoder
{
NSMutableArray array;
array = [[decoder decodeIntForKey:@"Array"]copy];
return self;
}