Câu hỏi được gắn thẻ «uitapgesturerecognizer»





10
Làm thế nào để tạo một UILabel có thể nhấp?
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") } }



Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.