TouchsBegan @ 多任务
当应用程序在 iPhoneOS 4.0 中后台运行时,是否可以访问 TouchBegan 事件?
提前致谢。
Is it possible to access to the touchesBegan event while application is running in background in iPhoneOS 4.0 ?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当应用程序在后台时,应用程序的任何视图都是不可见的,因此您无法触摸它,并且
touchesBegan
等不会被触发。When the app is in background, no views of the app is visibile, so you can't touch it, and
touchesBegan
etc. won't be fired.