hi, if i have 2 NSMutableArray declared in .h, synthesize at .m files, how can i copy whole contents of array 1 to 2? actually the same array.
can tried using this code only:
[self.data addObjectsFromArray:self.temparray]
to copy data from temparray to data.
doesn't seems to work.....