我想在图像视图的背景中放置一个补丁,然后将图像放在上面。我怎样才能做到这一点。我附上一张图片以便更好地理解 请帮忙这样做。
答案 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
是您的补丁图片。
你已经完成了