我正在尝试按照说明 here 将我用 Swift 编写的 iOS 应用程序与 Google Plus 集成。 .在 ViewController 中完成所有工作后,我愚蠢地认为我可以将身份验证行为封装在它自己的类中(如下)
问题是两个 GPPSignInDelegate 协议(protocol)函数 finishedwithAuth 和 didDisconnectWithError 永远不会被调用。如果我传入实现 GPPSignInDelegate 的 ViewController 或 AppDelegate 并将其分配给 googlePlus.delegate 回调调用成功;当我将 self 分配给委托(delegate)时,永远不会调用回调。
import Foundation
class GoogleAuthentication : GPPSignInDelegate {
let kClientId: NSString = ""
let googlePlus: GPPSignIn
var authenticatedSuccessfully: Bool?
// Passing in a ViewController implementing GPPSignInDelegate works
// init(delegate: GPPSignInDelegate) {
init() {
self.delegate = delegate
googlePlus = GPPSignIn.sharedInstance()
googlePlus.shouldFetchGooglePlusUser = true
googlePlus.clientID = kClientId
googlePlus.scopes = [kGTLAuthScopePlusLogin]
googlePlus.delegate = self // works when assignging delegate passed in
authenticatedSuccessfully = googlePlus.trySilentAuthentication()
}
func authenticate() {
googlePlus.authenticate()
}
func finishedWithAuth(auth: GTMOAuth2Authentication!, error: NSError!) {
println("finished with auth!")
}
func didDisconnectWithError(error: NSError!) {
println("disconnected with error!")
}
}
我是否缺少某些东西,或者 GPPSignInDelegate 是否必须由 ViewController 或 AppDelegate 实现?如果是这样,为什么?
Best Answer-推荐答案 strong>
委托(delegate)对象必须继承自 NSObject。于是就变成了:
class GoogleAuthentication: NSObject, GPPSignInDelegate {
关于ios - GPPSignInDelegate 的实现是否必须是 ViewController 或 AppDelegate?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26630477/
|