我正在尝试为UITabelView中的每个数组设置图像。如何为照片库中的每个阵列设置图像?所以我可以在UITableView的单元格中查看它。
我希望这有助于这是我的简单代码Download
谢谢你们。
答案 0 :(得分:1)
您可以这样做:
NSArray *photos = [[NSArray arrayWithObjects:
[UIImage imageNamed:@"1.png"],
[UIImage imageNamed:@"2.png"],
[UIImage imageNamed:@"3.png"],
[UIImage imageNamed:@"4.png"],
nil] retain]; // Arrange images in the same order your table data is arranged.
现在,在cellForRowAtIndexPath:
方法中:
cell.imageView.image = [photos objectAtIndex:indexPath.row];
答案 1 :(得分:0)
首先,你的意思是每张图片吗?您可以使用一个数组填充图像。
您可以在表视图cellForRowAtIndexPath
方法中执行此操作,通过告知表格视图,其单元格图像属性将填充数组索引处的数组中的对象,例如:
cell.imageView.image = [UIImage imageNamed:[myArray objectAtIndex:indexPath.row]];