我想使用scrollView滚动特定区域。为此,在我的mainViewController中,我在特定区域添加了一个Container视图,并添加了一个scrollview。滚动工作正常,并且滚动内容是标签。但问题是在这里我无法使它们可点击。我不明白如何实现以及在哪个viewController类中。请帮我。预先感谢。
''' LliveViewController类:UIViewController {
@IBOutlet weak var tripDetails: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
...
let tap = UITapGestureRecognizer(target: self, action: #selector(LliveViewController.tapFunction))
tripDetails.isUserInteractionEnabled = true
tripDetails.addGestureRecognizer(tap)
}
@objc
func tapFunction(sender:UITapGestureRecognizer) {
print("tap working")
}
} '''
我想要通过视图容器从LliveViewController访问的可点击标签。