我有一個使用這些規則每股擴展:iOS裝置分享擴展不工作的圖片網址
<dict>
<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
<integer>1</integer>
<key>NSExtensionActivationSupportsWebPageWithMaxCount</key>
<integer>1</integer>
<key>NSExtensionActivationSupportsImageWithMaxCount</key>
<integer>10</integer>
<key>NSExtensionActivationSupportsText</key>
<integer>1</integer>
</dict>
它完全正常的網站和圖像,但我無法解析圖片網址是這樣的:(http://www.zappos.com/images/z/3/3/5/4/0/3/3354034-p-2x.jpg) 。我厭倦了添加其他規則,但是當我使用Safari打開此網站並點擊共享時,我的共享擴展名仍不會顯示。
但是,如果我使規則TRUEPREDICATE,我的共享擴展可以解析網站。
我做錯了什麼? 謝謝
我能夠通過只使用public.url從safari獲取.jpg並刪除public.image的所有子項。 –