Is it possible to count the number of Taps when an application is in background mode?
Asked
Active
Viewed 111 times
-1
-
when our application on background. user can tap anywhere .. i googling it. it is possible or not. so i ask here.. i thinks it's not possible – user1479423 Jul 03 '12 at 12:53
-
That's a quite simple answer :) No – Pierre Jul 03 '12 at 12:50
-
+1 for that who down vote me...thanks for down vote me.. :) – user1479423 Jul 03 '12 at 13:01
1 Answers
2
No this is not possible because taps are handled by the UIResponder
class. It is the superclass of UIApplication
, UIView
and its subclasses (which include UIWindow
), so there is no way to "globally" count the taps - you can do it only for your app, when it's active..

graver
- 15,183
- 4
- 46
- 62