Ios CbundleDocumentTypes——在';照片';

Ios CbundleDocumentTypes——在';照片';,ios,iphone,info.plist,cfbundledocumenttypes,Ios,Iphone,Info.plist,Cfbundledocumenttypes,我已使用以下信息设置了我的info.plist。当您通过电子邮件访问文件时,我的应用程序将被列出,但当某人在其照片应用程序中时,我希望我的应用程序被列出。我还需要做些什么才能在照片应用程序中列出吗 <key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeIconFiles</key> <array/>

我已使用以下信息设置了我的info.plist。当您通过电子邮件访问文件时,我的应用程序将被列出,但当某人在其照片应用程序中时,我希望我的应用程序被列出。我还需要做些什么才能在照片应用程序中列出吗

<key>CFBundleDocumentTypes</key>
<array>
    <dict>
        <key>CFBundleTypeIconFiles</key>
        <array/>
        <key>CFBundleTypeName</key>
        <string>MyApp</string>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>LSHandlerRank</key>
        <string>Owner</string>
        <key>LSItemContentTypes</key>
        <array>
            <string>public.movie</string>
        </array>
        <key>NSExportableTypes</key>
        <array>
            <string>public.movie</string>
        </array>
    </dict>
</array>
CbundleDocumentTypes
CbundleTypeConfigiles
CbundleTypeName
MyApp
CbundleTypeRole
编辑
伊斯汉德兰克
所有者
lsItemContentType
公共电影
N可移植类型
公共电影
e、 g.我想要什么:

  • 列表项
  • 用户打开股票照片应用程序
  • 选择一个视频
  • 单击打开/共享按钮
  • 我希望我的应用程序列在这里(紧挨着Facebook、Vimeo、YouTube等)

  • 为了在照片应用程序中登录,您需要实现共享扩展。

    你在这方面运气好吗?不幸的是,运气不好。你试过什么吗?是的,我试过,但也没有运气。它在邮件应用程序中有效,但遗憾的是在照片应用程序中无效。