Get album artwork from MP3 file/ID3 tag
问题 I'm trying to get the album artwork from a MP3 file. In this case I use AVAudioPlayer to play the file. Here's the code that I thought would get the album artwork: MPMusicPlayerController *controller = [MPMusicPlayerController applicationMusicPlayer]; MPMediaItem *current = controller.nowPlayingItem; MPMediaItemArtwork *artwork = [current valueForProperty:MPMediaItemPropertyArtwork]; UIImage *artwork2 = [artwork imageWithSize:artwork.bounds.size]; [artworkView setImage:artwork2]; However