2017-02-17 5 views
0

다음을 사용하면 가능합니까?YouTube 공유 버튼을 클릭했을 때 앱 목록에 내 앱 표시

<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에서 친절하게 제안해야합니까?

답변

0

비디오 공유의 경우 "public.video (kUTTypeVideo)"를 사용할 수 있습니다. . 들어 전,

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

현재 다른 문서 유형 식별자를 찾을 수 있습니다 DeclaredUniformTypeIdentifiers

관련 문제