Need help for exit from headache... I cant able to show an image retrieve from ID3tag.
My code
MP3InfoDictionary = (__bridge NSDictionary*)dictRef;
if (MP3InfoDictionary != NULL) {
NSLog(@"MP3InfoDictionary APIC %@",[MP3InfoDictionary objectForKey:@"APIC"]);
...this output in console
Question:how can I show the image from dictionary to an NSImage
which step I must follow?
I did try every thing without success.