我正在传递List tableitems,然后在获取单元格中我正在执行此操作,生成每个单元格中最后一个图像的图像视图。我希望所有4个图像位于不同的不同单元格中。获取单元格方法如下: -
public override UICollectionViewCell GetCell (UICollectionView collectionView, NSIndexPath indexPath)
{
UITableView cell = TableViewView.DequeueReusableCell (CardCellId) as UITableViewCell;
foreach(UIImage img in tableitems)
{
cell.ImageView.Image=img;
}
return cell;
}
这里的tableitems是我的UIImages列表。
答案 0 :(得分:1)
每次调用imageView
时,您都会循环播放数组,这就是为什么只有最后一张图片被分配到cell.imageView.image = tableitems[indexPath.row]
。
尝试tableitems
假设[UIImage]()
为foreach ($array1 as $index => $arr1) {...}