@objc func addToCartTaped(tapGesture: UITapGestureRecognizer) {
let imgView = tapGesture.view as! UIImageView
}
# Paste in cell
cell.addToCartImageView.tag = indexPath.row
let tapGesture = UITapGestureRecognizer(target: self, action: #selector(addToCartTaped(tapGesture:)))
cell.addToCartImageView.isUserInteractionEnabled = true
cell.addToCartImageView.addGestureRecognizer(tapGesture)