菜鸟教程小白 发表于 2022-12-12 11:30:36

ios - iOS 的 Flipboard 共享功能中不显示共享扩展


                                            <p><p>我开发了一个接受 URL 的共享扩展程序,并且共享扩展程序显示在移动 Safari 共享菜单中并且它可以工作。但是,当我打开允许用户将文章分享到其他应用程序的应用程序 Flipboard 时,我的共享扩展程序不显示,而其他共享扩展程序却显示。我注意到 Flipboard 最终也共享了一个 URL。我的问题是,为什么我的不会出现?有什么方法可以找出翻转板用来共享的文件格式吗?谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>找到我自己的答案,这里是:</p>

<pre><code>    &lt;key&gt;NSExtensionActivationRule&lt;/key&gt;
    &lt;string&gt;
      SUBQUERY (
            extensionItems,
            $extensionItem,
            SUBQUERY (
                $extensionItem.attachments,
                $attachment,
                ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO &#34;public.url&#34; ||
                ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO &#34;public.text&#34; ||
                ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO &#34;public.data&#34;
            ).@count == $extensionItem.attachments.@count
      ).@count &amp;gt; 0            
    &lt;/string&gt;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - iOS 的 Flipboard 共享功能中不显示共享扩展,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/37536664/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/37536664/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - iOS 的 Flipboard 共享功能中不显示共享扩展