- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在 iOS 7 设备上伪造触摸事件。我浏览了一些可用资源,但找不到任何关于 iOS 7 的内容。
以下是我打算实现的目标:
在 iOS 7 设备上运行的 iOS 后台代码将监听套接字,客户端应用程序将向该套接字发送鼠标按键,这些按键被转换为触摸/滑动等事件。
我已经浏览了这个链接 http://blog.lazerwalker.com/blog/2013/10/16/faking-touch-events-on-ios-for-fun-and-profit同样,但这里也有人说 GSEvent 将在 iOS 7 中静默失败。
请让我知道是否有办法实现这一目标。
最佳答案
查看 ControlFreak .
所以添加并导入之后,就可以进行touch了
- (void)performTouchInView:(UIView *)view
{
UITouch *touch = [[UITouch alloc] initInView:view];
UIEvent *eventDown = [[UIEvent alloc] initWithTouch:touch];
[touch.view touchesBegan:[eventDown allTouches] withEvent:eventDown];
[touch setPhase:UITouchPhaseEnded];
UIEvent *eventUp = [[UIEvent alloc] initWithTouch:touch];
[touch.view touchesEnded:[eventUp allTouches] withEvent:eventUp];
}
UITouch *touch = [[UITouch alloc] initInView:view xcoord:100 ycoord:100];
关于ios - 除了使用 GSEvent 来伪造 iOS 7 设备上的触摸事件之外,还有其他方法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26881201/
通过在 stackoverflow 中搜索,我了解了如何在 iOS 上模拟 touchDown 事件,但经过多次尝试,我没有了解如何使用 GSEvent 制作 touchMoved 事件,有人知道吗?
我需要在 iOS 7 设备上伪造触摸事件。我浏览了一些可用资源,但找不到任何关于 iOS 7 的内容。 以下是我打算实现的目标: 在 iOS 7 设备上运行的 iOS 后台代码将监听套接字,客户端应用
我将其发送给 KennyTM(在 GitHub 上有所有私有(private)框架 header ),但我想我也应该在这里问,以防万一有人有一些好的想法或任何方法来帮助我。 我正在尝试编写一个命令行实
我是一名优秀的程序员,十分优秀!