GooglePlus与CocoaPods链接错误

时间:2013-10-29 12:27:11

标签: ios google-plus linker-errors cocoapods

我添加到我的pod文件

pod 'google-plus-ios-sdk', '1.4.1'

我做了

pod update

我导入了

#import <GooglePlus/GooglePlus.h>

但如果我试着

[GPPSignIn sharedInstance].clientID = kClientID; 

我从链接器收到此错误:

Undefined symbols for architecture i386:
"_OBJC_CLASS_$_GPPSignIn", referenced from:
      objc-class-ref in SDSocialManager.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

1 个答案:

答案 0 :(得分:13)

根据我的经验,链接器错误通常不会导致“一个解决方案适合所有人”,但我能够通过在构建设置(项目目标)中将${inherited}添加到Other Linker Flags来自行解决此问题)。

也许,由于没有这个标签,我没有继承GPPSignIn所需的一些静态库。

干杯!