IOS – FB共享打开safari对话框进行登录

前端之家收集整理的这篇文章主要介绍了IOS – FB共享打开safari对话框进行登录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以,在我的应用程序中,我可以成功分享内容.但我有个问题.

>用户尚未从应用程序的任何位置登录FB
>用户在手机上安装了FB应用程序.
>当我点击分享时,系统会提示我在Safari中使用FB登录.

我可以跳过3号吗?让用户通过手机上的FB应用程序获取登录详细信息?

我所做的就是:

-(void) userTappedOnFBLink:(UIGestureRecognizer*)gestureRecognizer
{
    NSLog(@"FB share");

    FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];
    content.contentURL = [NSURL URLWithString:SHARE_URL];

    [FBSDKShareDialog showFromViewController:self.parentViewController
                                 withContent:content
                                    delegate:self];
}

解决方法

如果你只想分享为什么不使用SLComposeViewController?是原生的,不要使用野生动物园.也适用于twitter.
import Social

创建SLComposeViewController:

if let vc = SLComposeViewController(forServiceType: SLServiceTypeFacebook) {
    vc.setInitialText("Your post text") //Optional
    vc.add(UIImage(named: "YourImageName")!) //Optional
    vc.add(URL(string: "Your url")) //Optional
    present(vc,animated: true)
}
原文链接:https://www.f2er.com/iOS/331455.html

猜你在找的iOS相关文章