gpt4 book ai didi

react-native - Share 在 iOS 13 上不起作用。 Expo 模块

转载 作者:行者123 更新时间:2023-12-03 17:28:41 25 4
gpt4 key购买 nike

SDK版本:35
平台(Android/iOS/web/all):iOS:13
在我将我的 iPhone 更新到 iOS 13 之后。当我选择分享到 Instagram 时,分享不起作用。
当我选择它时,什么都不会发生。
共享正在与其他社交网络合作

iOS 13. SDK 35. Expo v35

handleShare = async () =>{
this.setState({share : true, opa : 0.4})
if(!this.state.downloaded){
await this.handleDownload();
}
if(Platform.OS == 'ios'){
try {
const result = await Share.share({
message : this.state.uri,
url : this.state.uri,

}, {
excludedActivityTypes : [
"net.whatsapp.WhatsApp.ShareExtension",
]
});
if (result.action === Share.sharedAction) {
if (result.activityType) {
// shared with activity type of result.activityType
} else {
// shared
}
} else if (result.action === Share.dismissedAction) {
this.setState({share: false, opa : 1})
}
} catch (error) {
alert(error.message);
}
}
else{
Sharing.shareAsync(this.state.uri).then(() =>{
this.setState({share : false, opa : 1})
})
}
};

最佳答案

听起来这是个问题,是的。有一个feature request .

目前看来,如果它在相机胶卷上,您可以在 iOS 上分享到 Instagram。见 this answer举个例子。

关于react-native - Share 在 iOS 13 上不起作用。 Expo 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58122749/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com