0

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

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

从现在开始感谢。

4

2 回答 2

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];
于 2012-08-03T09:11:37.327 回答
0

首先,您是指每张图片吗?您将使用一个填充有图像的数组来执行此操作。

您可以在表格视图cellForRowAtIndexPath方法中执行此操作,通过告诉表格视图其单元格图像属性将填充单元格索引处的数组中的对象,例如:

cell.imageView.image = [UIImage imageNamed:[myArray objectAtIndex:indexPath.row]];
于 2012-08-03T08:50:55.633 回答