菜鸟教程小白 发表于 2022-12-12 22:00:27

ios - 如何从 Objective-C 中的 MIME 类型确定适当的文件扩展名


                                            <p><p>我正在使用 <code>NSData</code> 对象来存储不同类型的数据。对象也包含 MIME 格式字符串。但是为了使用 [<code>UIDocumentInteractionController interactionControllerWithURL:]</code> 方法,我需要将 <code>NSData</code> 对象保存到文件系统中。 </p>

<p>问题是如何根据MIME格式指定文件扩展名?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>感谢@makadev <a href="http://blog.ablepear.com/2010/08/how-to-get-file-extension-for-mime-type.html" rel="noreferrer noopener nofollow">this link</a>他将其作为评论发布,但我想我会将其添加为实际答案。这是从那篇文章派生的一些代码,适用于 iOS 11。请注意,您需要链接/导入 MobileCoreServices 框架。您为下面的 <code>mimetype</code> 标记填写的值应该是 <code>NSString*</code>。</p>

<pre><code>NSString* uti = (__bridge_transfer NSString*)UTTypeCreatePreferredIdentifierForTag(kUTTagClassMIMEType, (__bridge CFStringRef)&lt;#mimetype#&gt;, NULL);
NSString* extension = (__bridge_transfer NSString*)UTTypeCopyPreferredTagWithClass((__bridge CFStringRef)uti, kUTTagClassFilenameExtension);
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何从 Objective-C 中的 MIME 类型确定适当的文件扩展名,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/39267677/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/39267677/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何从 Objective-C 中的 MIME 类型确定适当的文件扩展名