菜鸟教程小白 发表于 2022-12-13 10:55:59

ios - Google Plus SDK 回调分享


                                            <p><p>我已经集成了适用于 ios 的 Google Plus SDK 并设置了所有内容以供共享。但是在共享显示弹出窗口打开后是否有回调,然后用户共享或取消共享。我想知道它说这个的委托(delegate)方法。
我知道 <code>-(void)finishedSharingWithError:(NSError *)error</code> 是委托(delegate)方法,但它没有被调用。
这是我通过 google plus 分享的代码..</p>

<pre><code>-(void)postToGooglePlus:(PostModel *)parameter{

GPPSignIn *signIn = ;
signIn.shouldFetchGooglePlusUser = YES;
signIn.clientID = kClientId;
signIn.scopes = @[ kGTLAuthScopePlusLogin ];
signIn.delegate = self;
;
}


- (void)finishedWithAuth: (GTMOAuth2Authentication *)auth
               error: (NSError *) error {
NSLog(@&#34;Received error %@ and auth object %@&#34;,error, auth);


id&lt;GPPNativeShareBuilder&gt; shareBuilder = [ nativeShareDialog];

;
;

}

-(void)finishedSharingWithError:(NSError *)error{
    if(!error){
   }
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您必须首先将 <code><GPPShareDelegate></code> 设置为您的 ViewController 。之后在你的 <code>- (void)finishedWithAuth: (GTMOAuth2Authentication *)auth error: (NSError *) error</code>method:</p> 中设置 <code>delegate</code>

<pre><code>id&lt;GPPNativeShareBuilder&gt; shareBuilder = [ nativeShareDialog];
.delegate = self;
</code></pre>

<p>您现在可以相应地调用 <code>-(void)finishedSharingWithError:(NSError *)error</code> 或 <code>-(void)finishedSharing:(BOOL)shared</code>。</code> p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Google Plus SDK 回调分享,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32604714/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32604714/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Google Plus SDK 回调分享