Swift - 使用未声明的类型'GTMOAuth2Authentication'

时间:2014-09-18 14:57:31

标签: ios swift google-plus

我已将应用程序从Obj-C切换到Swift,我已在其中实施Google+登录。

我的项目中有GoogleOpenSource.frameworkGooglePlus.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的最终版本。

关于我可能遗失的任何想法?

干杯

1 个答案:

答案 0 :(得分:4)

您只是错过了桥接标题中的一个导入 - GTMOAuth2AuthenticationGoogleOpenSource框架的一部分:

#import <GoogleOpenSource/GoogleOpenSource.h>