我想对xlsx文件做同样的处理,但不能做.我尝试添加“com.microsoft.excel.xlsx”但是没有起作用解决方法 我通过定义自定义UTI解决了如下.尝试将这些定义添加到您的info.pList中.它按预期工作.
<key>UTExportedTypeDeclarations</key><array> <dict> <key>UTTypeDescription</key> <string>XLSX input table document</string> <key>UTTypeTagspecification</key> <dict> <key>public.filename-extension</key> <string>xlsx</string> <key>public.mime-type</key> <string>application/vnd.openxmlformats-officedocument.spreadsheetml.sheet</string> </dict> <key>UTTypeConformsTo</key> <array> <string>public.data</string> </array> <key>UTTypeIDentifIEr</key> <string>com.mydomain.myapplication.xlsx</string> </dict></array>
….
<key>CFBundledocumentTypes</key><array> <dict> <key>CFBundleTypename</key> <string>XLSX input table document</string> <key>LSHandlerRank</key> <string>Owner</string> <key>CFBundleTypeRole</key> <string>Editor</string> <key>LSItemContentTypes</key> <array> <string>com.mydomain.myapplication.xlsx</string> </array> </dict></array>总结
以上是内存溢出为你收集整理的xcode4 – 如何将excel文件类型(xlsx)与iPhone应用程序相关联全部内容,希望文章能够帮你解决xcode4 – 如何将excel文件类型(xlsx)与iPhone应用程序相关联所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)