0

I have two questions:

  • Is it possible to create an app that upload screenshots to a server when the user takes one? It should also upload screenshots when another app is active.

  • If an app like this is possible, will apple allow this to their appstore?

I want to create an app like this to provide remote support to users so that we know what the user see on their device.

4

2 回答 2

1

在 iOS 5 上无法检测到已经(或将要)截取屏幕截图。

在 iOS 4.0 中,有一个 Darwin 通知触发了 PictureWasTakenNotification,但现在没有了。

该文档没有提及任何内容,并且使用 NSNotificationCenter 订阅所有通知仅在截屏后显示静音。

于 2013-11-14T11:52:23.953 回答
0

您可以检测屏幕截图何时完成:https ://stackoverflow.com/a/18158483/1034126

然后以编程方式获取另一个并上传到服务器:https ://stackoverflow.com/a/2203293/1034126

但我认为这不是一个好方法。您不需要截图来上传,您可以使用 aUIButton来触发程序截图,然后将其上传到服务器。

于 2013-11-14T11:54:20.230 回答