如何在图像视图中添加背景图像以及我希望它在背景图像上显示的图像?

时间:2017-06-29 11:32:46

标签: ios objective-c uiimageview

我想在图像视图的背景中放置一个补丁,然后将图像放在上面。我怎样才能做到这一点。我附上一张图片以便更好地理解 请帮忙这样做。  IMAGE

1 个答案:

答案 0 :(得分:0)

我希望您使用SDWebImage来缓存图像。

要显示用户个人资料,请将其用作UIButton并按照以下代码进行操作。

[userPhoto sd_setImageWithURL:[NSURL URLWithString:
     [[userArray objectAtIndex:indexPath.row] valueForKey:@"Photo"]] 
     forState:UIControlStateNormal 
     placeholderImage:[self adjustImageByLang:@"player_photo.png"]
];

player_photo.png是您的补丁图片。

你已经完成了