苹果手机免越狱群控无需硬件即插即用高清投屏控制操作

由于手机项目的需求不断扩大,人力明显出现不足!
这时候就需要批量控制手机的中控来进行扶持以达到最高的效率!
起初是需要苹果手机越狱才能安装进行控制操作,但是越狱后的苹果手机容易出现风控!
自从“超级黑洞”出了免越狱版本以此搬砖的大咖们予以得到被风控解决办法!
那么这款免越狱的要怎么操作呢?有什么特色呢?
下面小编给大家介绍一下,这个是操作的界面
在这里插入图片描述

左边的是主控手机,通过鼠标进行点击操作,键盘输入文字(复制粘贴都行)
可以单机/分组/全部手机执行脚本功能(可以自定义脚本)
在这里插入图片描述
如果遇到需要横屏操作的程序,也是支持的!高清投屏,画面随意放大缩小!
在这里插入图片描述
部分代码展示:
手指移动模拟:
s.send((“1”+formatSocketData(TOUCH_MOVE, 7, 800, 400)).encode()) # tell the tweak to move our finger “7” to (800, 400)
抬起手指模拟:
s.send((“1”+formatSocketData(TOUCH_UP, 7, 800, 400)).encode()) # tell the tweak to touch up our finger “7” at (800, 400)
//调整屏幕亮度
[[UIScreen mainScreen] setBrightness:0.5];
//跳转应用
NSURL *phoneUrl = [NSURL URLWithString:@“tel://10086”];
[[UIApplication sharedApplication] openURL:phoneUrl];
//简单提示框
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@“Title” message:@“Message” preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@“OK” style:UIAlertActionStyleDefault handler:nil];
[alert addAction:okAction];
[self presentViewController:alert animated:YES completion:nil];

//输入框提示框
UIAlertController *inputAlert = [UIAlertController alertControllerWithTitle:@“Title” message:@“Message” preferredStyle:UIAlertControllerStyleAlert];
[inputAlert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.placeholder = @“Input text here”;
}];
UIAlertAction *confirmAction = [UIAlertAction actionWithTitle:@“Confirm” style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
UITextField *textField = inputAlert.textFields.firstObject;
NSString *inputText = textField.text;
NSLog(@“Input text is: %@”, inputText);
}];
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@“Cancel” style:UIAlertActionStyleCancel handler:nil];
[inputAlert addAction:confirmAction];
[inputAlert addAction:cancelAction];
[self presentViewController:inputAlert animated:YES completion:nil];

猜你喜欢

转载自blog.csdn.net/VX_CLQK888/article/details/130294132