Reputation: 2200
i have an array and i want to extract value of array at specific index like:
NSString Val1 = Array1[index1];
array is NSMutableArray.
Upvotes: 0
Views: 147
Reputation: 6102
NSString *stringToExtract = [arrayToExtractFrom objectAtIndex:0];
Upvotes: 5