当我使用TicTacToe Google Cloud Endpoint示例在iOS上授权用户时,我会在返回应用程序之前暂时看到屏幕上显示的令牌。
要显示我使用的登录屏幕: -
// present the google sign in view controller
GTMOAuth2ViewControllerTouch *viewController;
viewController = [[GTMOAuth2ViewControllerTouch alloc] initWithScope:kGTLAuthScopePlusLogin
clientID:kClientId
clientSecret:kClientSecret
keychainItemName:kKeychainItemName
delegate:self
finishedSelector:@selector(viewController:finishedWithAuth:error:)];
[self presentViewController:viewController
animated:YES
completion:nil];
但在视图控制器返回之前,我会简要地看到以下屏幕: -
这是正常的吗?有没有办法阻止它?