gpt4 book ai didi

ios - type error null is not an object (evaluating 'ShareDialog.canShow') 在 React Native FBSDK

转载 作者:行者123 更新时间:2023-12-05 07:13:07 28 4
gpt4 key购买 nike

我已按照此 GitHub URL 将 Facebook 共享集成到我的应用程序中。 https://github.com/facebook/react-native-fbsdk这是我的代码:

constructor(props){
super(props);
this.state={
shareLinkContent : {
contentType: 'link',
contentDescription: 'Facebook sharing is easy!',
contentUrl: 'https://cabbazar.com',
},
}
shareLinkWithShareDialog() {
var tmp = this;
ShareDialog.canShow(tmp.state.shareLinkContent).then(
function(canShow) {
if (canShow) {
return ShareDialog.show(tmp.state.shareLinkContent);
}
}
).then(
function(result) {
console.log('handle result: ' + result);
},
function(error) {
console.log('Share fail with error: ' + error);
}
);
}

但我的模拟器总是出错。我需要为 Xcode 设置任何东西吗?我检查了这个网址,但它没有解决我的问题。 null is not an object (evaluating 'ShareDialog.canShow')

This is the error which I am facing.请建议。

谢谢

最佳答案

有时自动链接不起作用。所以你必须使用 react-native link react-native-fbsdk

手动链接

关于ios - type error null is not an object (evaluating 'ShareDialog.canShow') 在 React Native FBSDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60239362/

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