我正在尝试使用以下代码将MPMediaItemArtwork
Image 输入到单元格的 ImageView 中。UITableView's
MPMediaItemArtwork *artwork = [[[self.arrayOfAlbums objectAtIndex:indexPath.row] representativeItem]valueForProperty:MPMediaItemPropertyArtwork];
UIImage *artworkImage = [artwork imageWithSize: cell.imageView.bounds.size];
if (artworkImage)
{
cell.imageView.image = artworkImage;
}
else
{
cell.imageView.image = [UIImage imageNamed: @"noArtwork.png"];
}
UITableView's
当我在单元格中插入艺术品图像时没关系ImageView
。
但是当我的艺术品图像太小或太大时,就像下图一样。没有完全填满cell的ImageView。
你看到了吗?Stretch
我想像iOS 音乐应用一样设置填充
这是设置完全填充的内置应用程序艺术品图像Stretch
我想那样做。
所以我用cell.imageView.contentMode = UIViewContentModeScaleAspectFill;
了但是没有效果。
那么我该怎么做呢?谢谢你的工作。