みんな私は私の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がないというこのエラーが発生しました
よろしくお願いします。