picker
Sat Jan 08 2022 09:47:27 GMT+0000 (Coordinated Universal Time)
Saved by
@hasnat
func enableImageViewTapGesture()
{
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(profileImageTapped(tapGesturerecognizer:)))
playButtonImageView.isUserInteractionEnabled = true
playButtonImageView.addGestureRecognizer(tapGestureRecognizer)
}
@objc func profileImageTapped(tapGesturerecognizer: UITapGestureRecognizer){
}
content_copyCOPY
Comments