我应该为UTTypeImage导入什么库,这是iOS15中kUTTypeImage的替代品?

What#39;s the library should I import for UTTypeImage, which is the replacement of kUTTypeImage in iOS 15?(我应该为UTTypeImage导入什么库,这是iOS15中kUTTypeImage的替代品?)
本文介绍了我应该为UTTypeImage导入什么库,这是iOS15中kUTTypeImage的替代品?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在iOS 15之前,我使用UIImagePickerController来采集图像和视频,从[UIImagePickerController.InfoKey : Any]获取MediaType,然后使用kUTTypeImage(在MobileCoreServices库中)来标识MediaType。

但是说到iOS 15,Xcode抱怨kUTTypeImage was deprecated in iOS 15.0. Use UTTypeImage instead.,所以我把kUTTypeImage换成了UTTypeImage,但Xcode并不知道。

尝试搜索一些信息,但没有找到任何线索。我想我应该导入正确的库,但它是什么?

以下是代码的一部分:

func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
        guard let mediaType = info[.mediaType] as? String else { return }
        switch mediaType {
        case String(kUTTypeImage):
        // blabla
        case String(kUTTypeMovie):
        // blabla

以下是一些截图:

推荐答案

有点令人困惑。首先,您需要import UniformTypeIdentifiers。然后,将kUTTypeImage替换为UTType.image(UTTypeImage的SWIFT版本)。

这篇关于我应该为UTTypeImage导入什么库,这是iOS15中kUTTypeImage的替代品?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
Dropbox Files.download does not start when number of files in folder is gt; 1000(当文件夹中的文件数为1000时,Dropbox Files.Download不会启动)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)