如何为每个数组保存图像

时间:2012-08-03 08:27:12

标签: ios xcode arrays uitableview uiimageview

我正在尝试为UITabelView中的每个数组设置图像。如何为照片库中的每个阵列设置图像?所以我可以在UITableView的单元格中查看它。

我希望这有助于这是我的简单代码Download

谢谢你们。

2 个答案:

答案 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]];