让UIImageView通过点击以查看其背后

时间:2019-06-12 12:59:00

标签: ios swift uitapgesturerecognizer

我有UICollectionViewCell,其中有一个100X100的UIImageView。 我向collectionView单元格contentView添加了轻击手势。 当用户单击image时,不会调用tagGesture方法。我可以通过任何方式使UIImageView将该手势传递给它后面的contentView。我不想向UIImageView添加另一个点击手势。

1 个答案:

答案 0 :(得分:1)

创建此子类并将其设置为imageView的类名称

class TransImgV:UIImageView { 
    override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {  
        return false
    } 
}