菜鸟教程小白 发表于 2022-12-12 23:41:23

iphone - 在我的应用程序中打开(xlsx,ppt,pptx.docx)从 safari 或邮件不起作用


                                            <p><p>我正在使用 iOS 5.1 sdk 开发我的应用程序,但“打开方式”不适用于 pptx、ppt、docx、xlsx。有人可以给我 info.plist 的设置吗?我使用 com.microsoft.word.doc、com.microsoft.excel.xls、com.microsoft.powerpoint.ppt 作为文档类型。</p>

<p>CFBundleTypeIconFiles CFBundleTypeName Microsoft PowerPoint 演示文稿 CFBundleTypeRole Viewer LSHandlerRank Alternate LSItemContentTypes com.microsoft.powerpoint.​ppt com.microsoft.powerpoint.​pptx CFBundleTypeIconFiles CFBundleTypeName Excel 文档 CFBundleTypeRole Viewer LSHandlerRank Alternate LSItemContentTypes com.microsoft.excel.xls com.microsoft.excel .xlsx</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><blockquote>
<pre><code>NSArray *extensionArray = ;

   for (int i=0; i&lt;; i++) {
       NSString *fileExtension = ;
       NSString *utiString = (__bridge NSString *)UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension,(__bridge CFStringRef)fileExtension,NULL);
       NSLog(@&#34;Extension: %@ UTI:%@&#34;,fileExtension,utiString);
   }
</code></pre>
</blockquote>

<p>我们可以使用此代码打印正确的 UTI。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 在我的应用程序中打开(xlsx,ppt,pptx.docx)从 safari 或邮件不起作用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/13234928/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/13234928/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 在我的应用程序中打开(xlsx,ppt,pptx.docx)从 safari 或邮件不起作用