gpt4 book ai didi

objective-c - iOS中是否有像Quick Look framework for icons这样的标准库?

转载 作者:行者123 更新时间:2023-11-29 11:11:51 26 4
gpt4 key购买 nike

我需要列出应用程序文档文件夹中文件夹的内容,并想知道 iOS 框架中是否存在一个组件可以为特定文件返回 UIImage 或其他内容。

所以,正如标题所说;是否有可以使用的标准框架,或者我是否必须自己动手?

最佳答案

在我的头脑中,创建一个 UIDocumentInteractionController 的实例,并查询它的 icons 属性:

- (UIImage *)iconForFile: (NSURL *)fileURL {
UIDocumentInteractionController *controller = [UIDocumentInteractionController interactionControllerWithURL: fileURL];
if (controller) {
return [controller.icons lastObject]; // arbitrary selection--gives you the largest icon in this case
}

return nil;
}

我不知道有什么方法可以在不使用 UIDocumentInteractionController 的情况下获取图标。

请注意,这会为您提供文件的文档图标,但不是它的预览。 iOS 中没有内置的预览机制。

关于objective-c - iOS中是否有像Quick Look framework for icons这样的标准库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11208183/

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