iPhone 控制另一部 iPhone 上的应用程序

发布于 2024-10-17 09:46:52 字数 576 浏览 2 评论 0原文

我收到客户的请求,要求制作一个企业应用程序。

该应用程序本身相当简单,但他们希望用户能够向管理员请求帮助。授予权限后,管理员将能够从他/她的应用程序控制用户应用程序。

我真的很困惑我该如何去做这件事。我列出了一些我认为必要的步骤,但这是最好的猜测。

1 个用户/管理员建立了安全身份验证

1.1 用户请求生成随机数的帮助

1.2 管理员通过电话或短信获取号码,然后在他/她的应用程序中输入生成号以将这两个应用程序链接在一起

2 用户应用程序将其应用程序的屏幕截图发送到管理应用程序

3 管理应用程序接收屏幕截图流并显示在管理屏幕上

4 管理应用程序检测并将 UITouch 事件发送到用户应用程序< /strong>

5 个用户应用程序监听来自管理员的 steam UITouch 事件并传递给 UIKit 组件

欢迎任何建议。

提前非常感谢

Pondd

I have a request from a client to do an Enterprise app.

The app itself is fairly straight forward, but they want user to be able to request help from admin. When right are granted, Admin will be able to controller the user app from his/her app.

I am really stuck on how would I go about doing this. I listed some steps that I think are needed but it is a best guess.

1 user/admin established a secure Authentication

1.1 user request help with random number generate

1.2 admin got the number via phone or sms then input the gen number in his/her app to link this two app together

2 user app steam screenshot of its app to the admin app

3 admin app receives screenshots stream and show on admin screen

4 admin app detect and steam UITouch events to user app

5 user app listen to the steam UITouch events from admin and pass on to UIKit component

any suggestion is welcome.

Thankz so much in advance

Pondd

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↘紸啶 2024-10-24 09:46:52

您正在寻找 VNC 服务器。 VNC 协议处理网络上的所有屏幕和交互同步。

虽然有几个适用于 iPhone 的 VNC 客户端,但我不知道有开源服务器项目。所以你必须自己做端口。授权方面是 VNC 不会为您处理的另一项任务。 VNC 仅具有简单的名称/密码授权,您可以在通过电话进行手动质询响应后使用。

以 App-Store 兼容的方式(即不使用私有 API)进行 VNC 端口可能很困难,因为您必须生成 UITouch 事件并将它们插入事件流中。

You are looking for a VNC server. The VNC protocol handles all the screen and interaction synchronization over the network.

While there are a couple of VNC clients for the iPhone, I'm not aware of an open source server project. So you'd have to do the port by yourself. The authorization aspect is another task that VNC won't handle for you. VNC has only simple name/password authorization, which you might use after the manual challenge response over telephone.

It might be difficult to do the VNC port in an App-Store compatible way (i.e. without using private APIs) since you'd have to generate UITouch events and insert them into the event stream.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文