2012-07-12 102 views
3

傢伙我在做谷歌文檔整合在我的iPhone應用程序,錯誤GDATA-的ObjectiveC客戶端API +的oauth2 IOS框架

我從http://code.google.com/p/gdata-objectivec-client/

使用GDATA-的ObjectiveC的客戶端和配置我的項目與此使用以下代碼步驟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

請幫助我,在此先感謝。

回答

1

您需要將根項目GTMOAuth2ViewTouch.nib文件(主體工程出方的數據項目)

我有同樣的問題,但它是Xcode的問題。

0

您需要從SVN網址下載GTMOAuth2ViewTouch.nib文件,格式爲http://gtm-oauth2.googlecode.com/svn/trunk/Source/Touch/。從這裏下載文件,然後將其添加到您的項目中。它會正常工作。

+0

文件已經存在於Gdata項目中並且包含在項目中,但它仍顯示類似的錯誤。你能否提供此源碼[email protected] – 2012-07-12 05:50:12

+0

檢查你的代碼和XIB文件是否正確。同時檢查xib文件和類的鏈接。我不能提供你的代碼。它正在我的項目中工作。 – 2012-07-12 05:57:10

+0

我可以上傳源文件,可以糾正錯誤併發回嗎? – 2012-07-12 06:09:15

相關問題