如何使用UIImage的NSUrl intead数组数组来动画UIImageView?

时间:2015-11-20 13:13:07

标签: animation uiimageview uiimage nsurl sdwebimage

在我的应用程序中,我使用的是SDWebImageView,我必须在表格中显示用户列表,每个用户都有6张图像。所以我必须展示每一幅图像。 我使用下面的代码在屏幕上制作图像动画。

[smallDpImageV setImage:[UIImage animatedImageWithImages:_dynamicImageArray duration:time]];
[smallDpImageV startAnimating];

它在这里收到一个uiimage数组,每个图像都是由URL创建的。但对于tableview,我不想在uiimage上创建多个数组。

我可以用NSUrl吗?像这样

[imgV sd_setImageWithURL:[dict valueForKey:@"thumb_nail"] placeholderImage:[UIImage imageNamed:@"1447851886_male3.png"]];

1 个答案:

答案 0 :(得分:0)

我用SDWebImageView找到了答案。

var string = '<img src="http://xyz.example.com/abc/def/ghi/someimagename.jpg">';
string = string.split("ghi/")[1].split(".")[0];