我使用Cocoapods安装了FacebookSDK,根据终端,我已经安装了FacebookSDK 4.8.0(CoreKit,ShareKit和LoginKit),我导入了我的.h
文件BH-File.h
,并且已经初始化了我的AppDelegate中的所有内容.
出于某种原因,当尝试使用自定义按钮登录时,初始化时FBLoginManager
,我收到错误Use of undeclared type "FBLoginManager"
.
这是我的代码
if (FBSDKAccessToken.currentAccessToken() == nil) { let fbLoginManager : FBSDKLoginManager = fbLoginManager.logInWithReadPermissions(["public_profile", "email"], fromViewController: self, handler: { (loginResult, error) -> Void in if error == nil { print (FBSDKAccessToken.currentAccessToken().tokenString) } else { print ("ERROR*****: \(error)") } }) }
Carlos Luis .. 13
什么固定我的是添加import FBSDKCoreKit
和FBSDKLoginKit
我的课,由于某种原因,没有足够的加入它BH-file.h
什么固定我的是添加import FBSDKCoreKit
和FBSDKLoginKit
我的课,由于某种原因,没有足够的加入它BH-file.h