2017-10-06 8 views
0

나는 이미 같은 ZIP 파일과 연결 한 아이폰 OS 응용 프로그램을 ... "로 열고"준 MP3,

<key>CFBundleDocumentTypes</key> 
<array> 
    <dict> 
     <key>CFBundleTypeName</key> 
     <string>ZIP Archive</string> 
     <key>CFBundleTypeRole</key> 
     <string>Viewer</string> 
     <key>CFBundleTypeExtensions</key> 
     <array> 
      <string>zip</string> 
     </array> 
     <key>CFBundleTypeMIMETypes</key> 
     <array> 
      <string>application/zip</string> 
      <string>application/x-zip</string> 
      <string>application/x-zip-compressed</string> 
     </array> 
     <key>LSItemContentTypes</key> 
     <array> 
      <string>com.pkware.zip-archive</string> 
     </array> 
    </dict> 
</array> 

을 그리고 예상대로이 작동합니다. 사용자가 Safari에서 다운로드 할 ZIP을 클릭하면 내 앱이 "연결 프로그램"의 응용 프로그램으로 제공됩니다.


나는 MP3와 동일한 기능을 원합니다. 나는 아무 소용이 (애플 리케이션이 목록에 올라 오지 않습니다) 다음과 같은 시도했다.

<key>CFBundleDocumentTypes</key> 
<array> 
    <dict> 
     <key>CFBundleTypeIconFile</key> 
     <string>beer-mug.png</string> 
     <key>CFBundleTypeExtensions</key> 
     <array> 
      <string></string> 
     </array> 
     <key>LSItemContentTypes</key> 
     <array> 
      <string>public.mp3</string> 
     </array> 
     <key>CFBundleTypeName</key> 
     <string>public.audio</string> 
     <key>LSHandlerRank</key> 
     <string>Owner</string> 
    </dict> 
</array> 

이 이미지는 내가 갈거야 무엇 요약 :

enter image description here

는 MP3 파일을 "보호"또는 뭔가 있는가 나는 또한 미묘한 변화를 시도했습니다? 사용자가 iOS 앱 (사운드 효과로 사용)에서 MP3 파일을 다운로드하거나 액세스 할 수있는 방법이 필요합니다.

놀랍게도 검색이 비어 있습니다. 이상적으로 자신의 앱에서이 MP3 기능을 가진 사람이 info.plist를 게시하면 도움이 될 것입니다.

답변

0

왜 mp3 설정이 zip 설정과 다른가요? 다음 수정 프로그램이 작동해야합니다.

<key>CFBundleDocumentTypes</key> 
<array> 
    <dict> 
     <key>CFBundleTypeName</key> 
     <string>ZIP Archive</string> 
     <key>CFBundleTypeRole</key> 
     <string>Viewer</string> 
     <key>CFBundleTypeExtensions</key> 
     <array> 
      <string>zip</string> 
     </array> 
     <key>CFBundleTypeMIMETypes</key> 
     <array> 
      <string>application/zip</string> 
      <string>application/x-zip</string> 
      <string>application/x-zip-compressed</string> 
     </array> 
     <key>LSItemContentTypes</key> 
     <array> 
      <string>com.pkware.zip-archive</string> 
     </array> 
    </dict> 
    <dict> 
     <key>CFBundleTypeName</key> 
     <string>MP3</string> 
     <key>CFBundleTypeRole</key> 
     <string>Viewer</string> 
     <key>CFBundleTypeExtensions</key> 
     <array> 
      <string>mp3</string> 
     </array> 
     <key>CFBundleTypeMIMETypes</key> 
     <array> 
      <string>audio/mpeg</string> 
      <string>audio/mpeg3</string> 
      <string>audio/mpg</string> 
      <string>audio/mp3</string> 
     </array> 
     <key>LSItemContentTypes</key> 
     <array> 
      <string>public.mp3</string> 
     </array> 
    </dict> 
</array>