IOS アプリケーションでネイティブ GPP 共有ダイアログを開こうとすると、次のエラーが発生しました。
Web ベースの共有を使用すると、期待どおりに機能します。これが私のコードです:
- (IBAction)shareGooglePlus:(id)sender {
GPPSignIn *signIn = [GPPSignIn sharedInstance];
signIn.clientID = kClientID;
signIn.scopes = [NSArray arrayWithObjects:
kGTLAuthScopePlusLogin,
nil];
signIn.delegate = self;
if (![signIn trySilentAuthentication]){
[signIn authenticate];
}
}
- (void)finishedWithAuth: (GTMOAuth2Authentication *)auth
error: (NSError *) error
{
id<GPPShareBuilder> shareBuilder = [[GPPShare sharedInstance]
nativeShareDialog];
}
ありがとうございます