...anyone else having this problem or can confirm? My code works fine under iOS 7.
Code:
MPMediaItemArtwork *artwork = [rowItem valueForProperty:MPMediaItemPropertyArtwork];
UIImage *artworkImage = [artwork imageWithSize:CGSizeMake(100,100)];
blurredImage.image = [self.albumsArtworkArray objectAtIndex:indexPath.section];
if (artworkImage) {
image.image = artworkImage;
} else {
image.image = noArtwork;
}
Last edited by a moderator: