Я хотів би зробити можливість переключення на UILabel.
Я спробував це, але це не працює:
class DetailViewController: UIViewController {
@IBOutlet weak var tripDetails: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
...
let tap = UITapGestureRecognizer(target: self, action: Selector("tapFunction:"))
tripDetails.addGestureRecognizer(tap)
}
func tapFunction(sender:UITapGestureRecognizer) {
print("tap working")
}
}
UILabel
? Ви впевнені, що торкаєтесь до рамки етикетки? Чи є у васUIViews
обкладинка етикетки? Є чиuserInteractionEnabled
встановленийTrue
на етикетці?