copy NSMutableArray atIndex (0) to string variable
i have an array and i want to extract value of array开发者_C百科 at specific index like:
NSString Val1 = Array1[index1];
array is NSMutableArray.
NSString *stringToExtract = [arrayToExtractFrom objectAtIndex:0];
精彩评论