swift 获取手势点击的位置_Swift检测屏幕上任何位置的触摸

bd96500e110b49cbb3cd949968f18be7.png

I know you can detect touches using touchesBegan, touchesEnded, etc.

These all work. The only thing is that they only detect the touches on the view itself, not on anything on top of that view like a text field.

My goal is to create a timeout after a certain period of inactivity. The timeout will be reset if the screen is touched, meaning someone is still using the app. It works so far, as long as they don't tap on any controls (like a label, button, textview, etc).

I could also reset the timeout when any controls are tapped, but that would require a lot more cases (different types of controls on different view controllers).

I'm looking for and end-all screen tap detection method. Any ideas?

解决方案

You can add this to your AppDelegate:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

let tapGesture = UITapGestureRecognizer(target: self, action: nil)

tapGesture.delegate = self

window?.addGestureRecognizer(tapGesture)

return true

}

func gestureRecognizer(gestureRecognizer: UIGestureRecognizer, shouldReceiveTouch touch: UITouch) -> Bool {

// User tapped on screen, do whatever you want to do here.

return false

}

And also make your AppDelegate conform to UIGestureRecognizerDelegate protocol.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值