我使用了http://code.google.com/p/gdata-objectivec-client/
中的gdata-objectivec-client并使用以下步骤http://hoishing.wordpress.com/2011/08/23/gdata-objective-c-client-setup-in-xcode-4/
配置我的项目当我使用以下代码
创建GTMOAuth2ViewControllerTouch.h的实例时GTMOAuth2ViewControllerTouch *viewController;
viewController = [[[GTMOAuth2ViewControllerTouch alloc] initWithScope:scope
clientID:kMyClientID
clientSecret:kMyClientSecret
keychainItemName:kKeychainItemName
delegate:self
finishedSelector:@selector(viewController:finishedWithAuth:error:)] autorelease];
[[self navigationController] pushViewController:viewController animated:YES];
我发现此错误缺少GTMOAuth2ViewTouch.nib
请提前帮助我。
答案 0 :(得分:1)
您需要在根项目中移动GTMOAuth2ViewTouch.nib
文件(主项目在数据项目外)
我遇到了同样的问题,但这是Xcode的问题。
答案 1 :(得分:0)
您需要从SVN网址下载GTMOAuth2ViewTouch.nib文件,为http://gtm-oauth2.googlecode.com/svn/trunk/Source/Touch/。从此处下载文件,然后将其添加到项目中。它会正常工作。