iOS: Is it possible to take screenshots while running as a background task?(iOS:作为后台任务运行时是否可以截屏?)
问题描述
我想在我的应用处于后台时截取任何正在运行的应用的屏幕截图.
I want to take screenshots of any running app, while my app is in the background.
我知道我可以使用以下方法在 iOS 中截屏:
I know I can take screenshots in iOS using:
UIGraphicsBeginImageContext(webview.frame.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
但这在后台任务中实际上是不可能的,因为 UIGraphicsGetCurrentContext 返回 NULL 并且我想要正在运行的应用程序的屏幕截图而不是我的视图.有没有其他办法?
But this is not really possible in a background task as UIGraphicsGetCurrentContext returns NULL and I want a screenshot of the running app and not my view. Is there any other way?
推荐答案
在运行股票操作系统时,iOS 应用安全沙箱将阻止您的应用访问任何其他应用的视图内容.
When running the stock OS, the iOS app security sandbox will prevent your app from having access to the contents of the view of any other app.
这篇关于iOS:作为后台任务运行时是否可以截屏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iOS:作为后台任务运行时是否可以截屏?


基础教程推荐
- 如何从 logcat 中删除旧数据? 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01