I have a array that's I want to have in a uitextview. This is how it's currently displaying. How do I remove the ( ( ) )'s?
Here's a screenshot
Here's my code:
NSArray *arrayConditions = [[NSArray alloc] initWithObjects:[item objectForKey:@"conditions"], nil];
NSString * resultConditions = [arrayConditions description];
self.conditionsDeal.text = resultConditions;
NSLog(@"conditions are %@", [item objectForKey:@"conditions"]);
thanks for any help