Skip to content

Instantly share code, notes, and snippets.

@noppefoxwolf
Created October 3, 2014 07:25
Show Gist options
  • Save noppefoxwolf/893917ed1ac0f59777fc to your computer and use it in GitHub Desktop.
Save noppefoxwolf/893917ed1ac0f59777fc to your computer and use it in GitHub Desktop.
iOS8からのArtwork取得注意点 ref: http://qiita.com/noppefoxwolf/items/20637f29242ad368d786
MPMediaItemArtwork *artwork = [content.mediaItem valueForProperty:MPMediaItemPropertyArtwork];
UIImage *image = [artwork imageWithSize:CGSizeMake(250,250)];
MPMediaItemArtwork *artwork = [content.mediaItem valueForProperty:MPMediaItemPropertyArtwork];
UIImage *image = [artwork imageWithSize:artwork.bounds.size];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment