I have Two NSMutableArray Array I want to combine this array in to old one array.
How can i do this without any loop (for, while).
NSMutableArray *oldArray = [[NSMutableArray alloc]init];
[oldArray addObject:@"four"];
[oldArray addObject:@"five"];
[oldArray addObject:@"six"];
NSMutableArray *newArray = [[NSMutableArray alloc]init];
[newArray addObject:@"one"];
[newArray addObject:@"two"];
[newArray addObject:@"three"];
After Combine I want output like this :
NSLog(@"After Combine : %@",oldArray);
//Output : one, two, three, four, five, six