my requirement is to convert the NSMutualArray of NSData into NSMutualArray of NSString, Is there any method or function which directly works for above condition, or we have to deal with individual element of each array?
My code:
for (int i = 0; i < [newTutorials count]; i++) { // mutableArray[i] = [[NSString alloc] initWithData:newTutorials[i] encoding:NSUTF8StringEncoding]; NSLog(@"url: %@: ",newTutorials[i]); } NSLog(@"%@",mutableArray);