添加到UICollectionViewCell的图像视图添加后消失

时间:2018-11-04 22:36:50

标签: swift uicollectionview uicollectionviewcell

我有一个要在商店里购物的游戏。每个物品都有单元格。当您单击单元格时,您将购买该商品。我有一个UIImageView,当单击它以显示它已收集时,我想添加到该单元格。我不能仅将位置设置为与单元格相同,因为CollectionView具有自动滚动视图。我希望将ImageView添加到单元格中,以便在滚动时随单元格一起移动。无论何时添加,它都会消失。

这是我尝试过的

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {

    let cell = collectionView.cellForItem(at: indexPath) as! Shop1CollectionViewCell

        cell.addSubview(toFront: selector)

//I have tried replacing cell with cell.Label(a view inside of cell), and cell.contentView none of these change anything

        cell.bringSubview(toFront: selector)//just in case if it is added and gets put behind all of the views in the cell


    }

每当我单击该单元格时,ImageView就会消失。还有另一种方法可以将其添加到单元格中,以使其不会消失吗?

0 个答案:

没有答案