gpt4 book ai didi

ios - 有没有办法获取我的 iOS 应用程序屏幕截图列表?

转载 作者:可可西里 更新时间:2023-11-01 00:23:05 24 4
gpt4 key购买 nike

有没有办法在我的 iOS 应用程序中访问从我的应用程序截取的所有屏幕截图?

如果不可能,有没有办法只用截图相册(来自所有应用程序)打开图像选择器 Controller (UIImagePickerController)?

谢谢。

最佳答案

除了此处定义的源类型之外,无法呈现标准的 UIImagePickerController

https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImagePickerController_Class/#//apple_ref/c/tdef/UIImagePickerControllerSourceType

但是,有一种方法可以抓取屏幕截图的相册并将其显示在自己的 UI 中。根据文档,您可以执行以下操作:

let options = PHFetchOptions()
options.predicate = NSPredicate(format: "localizedTitle = Screenshots")
let collections = PHAssetCollection.fetchAssetCollectionsWithType(.SmartAlbum, subtype: .Any, options: options)
let sceenShots = collections.firstObject as? PHAssetCollection

但是由于错误(上面会因为谓词而崩溃)你可以获取所有相册然后过滤截图的相册(适用于 iOS8+)

let collections = PHAssetCollection.fetchAssetCollectionsWithType(.SmartAlbum, subtype: .Any, options: nil)
var screenshots: PHAssetCollection?
collections.enumerateObjectsUsingBlock {
(collection, _, _) -> Void in
if collection.localizedTitle == "Screenshots" {
screenshots = collection as? PHAssetCollection
}
}

或者如果你的目标是 iOS9+,你可以这样做:

let collections = PHAssetCollection.fetchAssetCollectionsWithType(.SmartAlbum, subtype: .SmartAlbumScreenshots, options: nil)
let screenshots = collections.lastObject as? PHAssetCollection

另请注意,无法从特定应用程序中获取屏幕截图。

关于ios - 有没有办法获取我的 iOS 应用程序屏幕截图列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35648972/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com