所以,在我的应用程序中,我可以成功分享内容.但我有个问题.
>用户尚未从应用程序的任何位置登录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) }