我为 Facebook 登录安装了两个 pod
pod 'FacebookCore'
pod 'FacebookLogin'
比在 appdelegate 中导入 FacebookCore。它仍然显示使用未解决的标识符错误。
我还在 info.plist 中实现了标签
<array>
<string>fb---------</string>
</array>
<key>FacebookAppID</key>
<string>-----------</string>
<key>FacebookDisplayName</key>
<string>-----------</string>
仍然无法获取 SDKApplicationDelegate。
func application(_ app: UIApplication, open url: URL,
options: [UIApplication.OpenURLOptionsKey: Any]) -> Bool {
if SDKApplicationDelegate.shared.application(app, open: url, options: options) {
return true
}
return false
}