如何为具有不同图像的每个单元格设置图像视图iOS.Xamarin

时间:2016-07-05 06:25:19

标签: xamarin.ios

我正在传递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列表。

1 个答案:

答案 0 :(得分:1)

每次调用imageView时,您都会循环播放数组,这就是为什么只有最后一张图片被分配到cell.imageView.image = tableitems[indexPath.row]

尝试tableitems假设[UIImage]()foreach ($array1 as $index => $arr1) {...}