在Swift中,可以通过重写touchesBegan
方法来获取用户点击的view
。以下是一个示例:
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
if let touch = touches.first {
let location = touch.location(in: self.view)
let tappedView = self.view.hitTest(location, with: event)
// 对点击的view进行处理
if tappedView == yourView {
// 点击了yourView
} else if tappedView == anotherView {
// 点击了anotherView
}
}
}
在这个示例中,我们首先获取了用户点击的位置location
,然后使用hitTest
方法来获取被点击的view
。然后可以使用if
语句来判断用户点击的是哪个view
,并进行相应的处理。