3

伙计们,我正在我的 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

请帮助我,在此先感谢。

4

2 回答 2

1

您需要将GTMOAuth2ViewTouch.nib文件移动到根项目中(主项目在数据项目之外)

我遇到了同样的问题,但这是 Xcode 的问题。

于 2012-07-13T12:57:44.490 回答
0

您需要从 SVN url 下载 GTMOAuth2ViewTouch.nib 文件,提供为http://gtm-oauth2.googlecode.com/svn/trunk/Source/Touch/。从此处下载文件,然后将其添加到您的项目中。它会正常工作。

于 2012-07-12T05:44:48.977 回答