我在ios应用程序中实现了Facebook集成。为此,我已在应用程序中集成FBSDKLoginButton
以通过safari登录。它工作正常。还有一个分享按钮。我使用以下代码进行fb共享按钮单击。
-(void)shareForFB
{
FBSDKShareDialog *shareDialog = [[FBSDKShareDialog alloc] init];
if ([shareDialog canShow])
{
FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];
content.contentURL = [NSURL URLWithString:@"<some url>"];
shareDialog.shareContent = content;
shareDialog.fromViewController = self;
shareDialog.delegate = self;
[shareDialog show];
}
}
这也很好。
如果我没有通过safari登录到应用程序中的FB,我试图分享该消息。它是开放的野生动物园,然后登录后分享信息。
在重定向到应用时,FBSDKLoginButton
未获得更新。它仍然显示为“未登录”&#39;案件。我想相应地更新登录按钮。
请帮忙