I am new in iOS and I am facing problem regarding to get more the one array in this loop
for (NSString *strDevice in Array1) {
NSLog(@"Print Your Data = %@",strDevice);
//Send this strDevice to server in loop one by one.
}
This loop only convert one array in string and I am not able to access the string outside this loop. I have 9 array
Array1 = [devices valueForKey:@"key1"];
Array2 = [devices valueForKey:@"key2"];
Array3 = [devices valueForKey:@"key3"];
Array4 = [devices valueForKey:@"key4"];
Array5 = [devices valueForKey:@"key5"];
Array6 = [devices valueForKey:@"key6"];
Array7 = [devices valueForKey:@"key7"];
Array8 = [devices valueForKey:@"key8"];
Array9 = [devices valueForKey:@"key9"];
and I need to convert all the array into 9 different string using this loop is it possible?? How can I convert 9 different array in 9 different string.
Note - devices is NSMutableArray from core data and it type is NSString.
Thanks in Advance!
devicesand what type(s) contains it?