6 releases
0.0.7 | Jan 21, 2024 |
---|---|
0.0.6 | Jan 11, 2024 |
#72 in macOS and iOS APIs
42KB
1K
SLoC
zxtouch
ios 按键自动化(连点器)、需越狱并已经安装 zxtouch.deb
功能
显示弹窗
use zxtouch::zx_touch::{TouchTrait, ZxTouch};
let mut touch = ZxTouch::new("192.168.3.113", 6000);//!
touch.connect().await.unwrap();
touch.show_alert_box("hello", "hi", 3).await.unwrap();
点击屏幕
use zxtouch::zx_touch::ZxTouch;
let mut touch = ZxTouch::new("192.168.3.113", 6000);
touch.connect().await.unwrap();
touch.touch_down(200, 200, TouchFinger::Five).await.unwrap();
touch.close().await.unwrap();
文本输入
use zxtouch::zx_touch::ZxTouch;
let mut touch = ZxTouch::new("192.168.3.113", 6000);
touch.connect().await.unwrap();
touch.text("hello").await.unwrap();
touch.close().await.unwrap();
Dependencies
~1–2MB
~38K SLoC