Tôi muốn làm cho một UILabel có thể nhấp.
Tôi đã thử điều này, nhưng nó không hoạt động:
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
gì? Bạn có chắc là bạn đang chạm vào khung của nhãn không? Bạn cóUIViews
bao gồm các nhãn? ĐượcuserInteractionEnabled
đặt thànhTrue
nhãn?