我已将应用程序从Obj-C切换到Swift,我已在其中实施Google+登录。
我的项目中有GoogleOpenSource.framework
和GooglePlus.framework
,以及我的桥接标题上的以下行:
#import <GooglePlus/GooglePlus.h>
#import <GooglePlus/GPPSignIn.h>
不幸的是,我在Use of undeclared type 'GTMOAuth2Authentication'
上尝试实施- (void)finishedWithAuth:(GTMOAuth2Authentication *)auth error:(NSError *)error
时仍然收到错误GPPSignInDelegate
。
我使用的是G + SDK 1.7.1,以及Xcode 6的最终版本。
关于我可能遗失的任何想法?
干杯
答案 0 :(得分:4)
您只是错过了桥接标题中的一个导入 - GTMOAuth2Authentication
是GoogleOpenSource
框架的一部分:
#import <GoogleOpenSource/GoogleOpenSource.h>