我正在使用 UIGridView
Repo从提要中创建图像的网格视图。但是当我使用以下代码时,我会得到相同的图像填充所有网格。
-(UIGridViewCell *) gridView:(UIGridView *)grid cellForRowAt:(int)rowIndex AndColumnAt:(int)columnIndex
{
Cell *cell = (Cell *)[grid dequeueReusableCell];
if (cell == nil) {
cell = [[Cell alloc] init];
}
NSString *imageLink = [item objectForKey:@"link"];
NSURL * imageURL = [NSURL URLWithString:imageLink];
NSData * imageData = [NSData dataWithContentsOfURL:imageURL];
UIImage * image = [UIImage imageWithData:imageData];
cell.thumbnail.image = image;
return cell;
}
如何用数组中的所有图像填充网格?
提前致谢