伙计们,我正在我的 iPhone 应用程序中集成谷歌文档,
我使用了来自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
请帮助我,在此先感谢。