在ios中单击youtube共享按钮时,在应用列表中显示我的应用

时间:2017-02-17 09:49:56

标签: ios youtube share

是否可以使用以下内容?

<dict>
 <key>CFBundleTypeName</key>
 <string>Open All Files</string>
 <key>LSHandlerRank</key>
 <string>Owner</string>
 <key>CFBundleTypeRole</key>
 <string>Editor</string>
 <key>LSItemContentTypes</key>
 <array>
 <string>public.content</string>
 <string>public.data</string>
 </array>
 </dict>

我知道照片可能,但我应该如何为youtube提出建议。

1 个答案:

答案 0 :(得分:0)

对于视频共享,您可以使用&#34; public.video(kUTTypeVideo)&#34;。例如,

<dict>
        <key>CFBundleTypeIconFiles</key>
        <array/>
        <key>CFBundleTypeName</key>
        <string>Video</string>
        <key>LSItemContentTypes</key>
        <array>
            <string>public.movie</string>
        </array>
    </dict>

您可以在此处找到其他文档类型标识符:DeclaredUniformTypeIdentifiers