1

所以我一直在瀏覽「Document Interaction Programming Topics for iOS」。 我已經能夠通過Mail實現「用myapp打開」選項,想知道如何根據指定的文件類型將選項更改爲「與myapp共享」? 這是我已經試過:如何在iphone郵箱打開文檔時提供「分享」選項

<key>CFBundleDocumentTypes</key> 
<array> 
    <dict> 
     <key>CFBundleTypeName</key> 
     <string>Document</string> 
     <key>LSHandlerRank</key> 
     <string>Alternate</string> 
     <key>CFBundleTypeRole</key> 
     <string>Owner</string> 
     <key>LSItemContentTypes</key> 
     <array> 
      <string>public.data</string> 
     </array> 
    </dict>     
</array> 
+0

只需指定多一點,我要註冊我的應用程序打開文件從任何外部應用程序。 – rishabh

回答

1

抓取其他網站的事實證明,同樣不能:-(進行

相關問題