I\'m new to gesture recognizers so maybe this question sounds silly: I\'m assigning tap gesture recognizers to a bunch of UIViews. In the method is it possible to find out w
func tabGesture_Call { let tapRec = UITapGestureRecognizer(target: self, action: "handleTap:") tapRec.delegate = self self.view.addGestureRecognizer(tapRec) //where we want to gesture like: view, label etc } func handleTap(sender: UITapGestureRecognizer) { NSLog("Touch.."); //handling code }