我是IOS的新手。 我有一个imageurl数组,需要存储在uimage tableview中 现在我有一个问题。
我有这段代码
cell.imageView.image = [UIImage imageNamed:[thumbnails objectAtIndex:indexPath.row]];
我知道它不会显示任何内容,因为我必须做一些事情来使imageview加载图像。 任何人都可以指导我吗?
答案 0 :(得分:0)
你必须使用:
view_Image.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:url_Img_FULL]]];