当我从开发人员FB粘贴时,我遇到了问题:
找不到“ FBSDKCoreKit / FBSDKCoreKit.h”文件
我已经安装:
Email.send({
SecureToken : "C973D7AD-F097-4B95-91F4-40ABC5567812",
To : 'them@website.com',
From : "you@isp.com",
Subject : "Your cart",
Body : `Your cart: ${data.map(item => item.name + ": " + item.price)}`
}).then(
message => alert(message)
);
pod 'FBSDKLoginKit'
pod 'react-native-fbsdk', :path => '../node_modules/react-native-fbsdk'
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
我在Xcode AppDelegate上粘贴时的错误:
找不到“ FBSDKCoreKit / FBSDKCoreKit.h”文件
请帮助我解决此问题。