我想輸入MPMediaItemArtwork
圖像到UITableView's
單元格的ImageView中,並帶有以下代碼。如何在iOS中設置MediaItemArtwork圖像填充UITableViewCell?
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
插入圖形圖像。
但是當我的作品圖像太小或太大時,就像下面的圖片發生了一樣。 未完全填充單元格的ImageView。
你看到了嗎?我想設置與Stretch
填補像的iOS音樂應用
這裏是內建應用作品圖片那一套完全填補Stretch
我想要做這樣的。
所以我用cell.imageView.contentMode = UIViewContentModeScaleAspectFill;
然而它沒有效果。
那麼我該怎麼做呢? 感謝您的工作。
sourceImage是什麼兄弟?我的作品圖片? –
是的,正確的。忘記了。 – SAE
Thz爲你的答案bro.That是完美的:) –