iOS共享扩展应用程序

iOS共享扩展应用程序

本文介绍了如何创建React Native iOS共享扩展应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望我的react-native应用程序可以从Whatsapp,Skype和Photos中共享..我尝试使用 react-native-share-extension ,但仅在Safari浏览器中显示该扩展名.

I want my react-native app to be available for share from Whatsapp, Skype, Photos.. I tried using react-native-share-extension but it is only showing the extension in the Safari browser.

如何在iOS的react-native中在Safari以外的应用程序中实现共享功能?

How to implement the sharing feature in applications other than Safari in react-native for iOS?

推荐答案

我通过将其添加到信息plist中来解决了该问题

I fixed it by adding this in info plist

<dict>
        <key>NSExtensionActivationRule</key>
        <dict>
            <key>NSExtensionActivationSupportsImageWithMaxCount</key>
            <integer>1</integer>
        </dict>
    </dict>

这篇关于如何创建React Native iOS共享扩展应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 14:16