0
我已成功將Google Drive API與iOS集成,但似乎存在Drive OAuth進程的主要問題:沒有按鈕可供用戶按下以退出ModalViewController
以輸入此代碼。 ..Google Drive API問題iOS
我已成功將Google Drive API與iOS集成,但似乎存在Drive OAuth進程的主要問題:沒有按鈕可供用戶按下以退出ModalViewController
以輸入此代碼。 ..Google Drive API問題iOS
谷歌真的是在屁股的絕對的痛苦,這一次。他們在自己的示例代碼犯了一個錯誤:
其他任何人試圖做到這一點在未來,添加[viewController dismissViewControllerAnimated:NO completion:nil];
以下方法:
// Handle completion of the authorization process, and updates the Drive service
// with the new credentials.
- (void)viewController:(GTMOAuth2ViewControllerTouch *)viewController
finishedWithAuth:(GTMOAuth2Authentication *)authResult
error:(NSError *)error
{
if (error != nil)
{
[self showAlert:@"Authentication Error" message:error.localizedDescription];
self.driveService.authorizer = nil;
}
else
{
self.driveService.authorizer = authResult;
}
}