识别主屏幕上的手势
我正在为 iPhone 开发一个应用程序。
我正在寻找一种方法,一旦在主屏幕上(或在所有屏幕上,如果可能的话)识别到拖动手势,即可运行一些代码。
有谁知道如何使用 Xcode 和 Objective-C 通过 iOS SDK 获得这个?
I am developing an app for iPhone.
I am looking for a way to run some code once a drag gesture is recognized on the homescreen (or on all screens if possible).
Does anyone know how to get this with the iOS SDK using Xcode and Objective-C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的应用程序无法在 iOS 中的任何位置接收手势,除非在其处于活动状态时在其自身及其自己的视图内(不包括系统通知和应用程序图标)。
Your app cannot receive gestures anywhere in iOS except within itself and its own views while it's active (not counting system notifications and the app icon).
我怀疑这是可能的。为此,您需要以比通常允许的级别更低的级别连接到操作系统。
恐怕 iOS 的锁定程度比 Mac OS 还要多。
I doubt this is possible. To do this, you will need to hook into the OS at a lower level than is usually allowed.
iOS is locked down much more than Mac OS, I'm afraid.