I have an NSArray from NStrings, I got this from NSLog when printing an array. Here is the code I implemented:
NSMetadataQuery *query = [[NSMetadataQuery alloc] init]; ..... NSArray *queryResults = [[query results] copy]; for (NSMetadataItem *item in queryResults) { id value = [item valueForAttribute: kMDItemAlbum]; [databaseArray addObject: value]; } "The Chronicles Of Narnia: Prince Caspian", "Taste the First Love", "Once (Original Soundtrack)", "430 West Presents Detroit Calling", "O\U0308\U00d0\U00b9u\U0301\U00b0\U00aeA\U0300O\U0308A\U0300O\U0308I\U0301A\U030a-O\U0301a\U0300A\U0302\U00a1", "\U7ea2\U96e8\U6d41\U884c\U7f51", "I\U0300\U00ab\U00bc\U00abO\U0303A\U030aE\U0300y\U0301\U00b7a\U0301", "A\U0303n\U0303\U00b8e\U0300\U00b2I\U0300C\U0327U\U0300", "\U00bb\U00b3A\U0308i\U0302O\U0303\U00bdO\U0301N\U0303", "American IV (The Man Comes Aro", "All That We Needed",
Now, how can I change human-readable strings for human-readable strings? Thanks.
source share