繁体   English   中英

Swift 5 IOS facebook 共享对话框,未显示在我的应用程序上

[英]Swift 5 IOS facebook share dialog, is not showing on my app

我有一周时间尝试从 Facebook 显示 shareDialog,但没有任何效果,我的登录按钮可以正常工作,我在 Android 中的工作正常,但是 IO 无法正常工作,我已经从 Facebook 安装了我的 SDK,我把所有的文件夹锁定到项目中,但似乎对我没有任何作用,我已经为 facebookSDK https://github.com/facebookarchive/facebook-swift-sdk/blob/master/MigrationGuide.md进行了迁移

并且不起作用,我做错了什么,这是我的 AppDelegate.swift:

import UIKit
import FBSDKCoreKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    func application(
        _ application: UIApplication,
        didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
    ) -> Bool {
        // Override point for customization after application launch.

        ApplicationDelegate.shared.application(
            application,
            didFinishLaunchingWithOptions: launchOptions
        )
        return true
    }

    func application(
        _ app: UIApplication,
        open url: URL,
        options: [UIApplication.OpenURLOptionsKey : Any] = [:]
    ) -> Bool {
        return ApplicationDelegate.shared.application(
            app,
            open: url,
            options: options
        )
    }
    func applicationDidBecomeActive(_ application: UIApplication) {
        AppEvents.activateApp()
    }



    // MARK: UISceneSession Lifecycle

    func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
        // Called when a new scene session is being created.
        // Use this method to select a configuration to create the new scene with.
        return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
    }

    func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
        // Called when the user discards a scene session.
        // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
        // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
    }


}

这是 ViewController.swift :

import UIKit
import FBSDKLoginKit
import FBSDKShareKit


class ViewController: UIViewController {

    @IBAction func ShareButton(_ sender: Any) {
        let alert = UIAlertController(title : "Comparte", message:"Comparte con amigos", preferredStyle: .actionSheet)

        let actionOne = UIAlertAction(title: "Comparte en facebook", style: .default) { (UIAlertAction) in

            let sharePhoto = SharePhoto()
            sharePhoto.imageURL = URL(string: "https://www.hola.com/imagenes/actualidad/20171204102954/adelanto-portada-revista-hola/0-514-626/adelanto-hola1-t.jpg")

            let content = SharePhotoContent()
            content.photos = [sharePhoto]

            self.showShareDialog(content)

        }
        alert.addAction(actionOne)

       self.present(alert, animated: true, completion: nil)

    }

    override func viewDidLoad() {
        super.viewDidLoad()

        let loginButton = FBLoginButton(permissions: [ .publicProfile ])
        loginButton.center = view.center

        view.addSubview(loginButton)
        // Do any additional setup after loading the view.
    }

     func showShareDialog<C: SharingContent>(_ content: C, mode: ShareDialog.Mode = ShareDialog.Mode.automatic) {
        let dialog = ShareDialog(fromViewController: self, content: content, delegate: self as? SharingDelegate)
            dialog.mode = mode

            dialog.show()
    }

     func sharer(_ sharer: Sharing, didCompleteWithResults results: [String: Any]) {
        print("success")

        let title = "Share Success"
        let message = "Thank You"
        let alertController = UIAlertController.init(title: title, message: message, preferredStyle: UIAlertController.Style.alert)
        self.present(alertController, animated: true, completion: nil)


    }

    func sharer(_ sharer: Sharing, didFailWithError error: Error) {
        print("error")

        let title = "Share Failed"
        let message = "Something went wrong. Please try again"
        let alertController = UIAlertController.init(title: title, message: message, preferredStyle: UIAlertController.Style.actionSheet)
        self.present(alertController, animated: true, completion: nil)
    }

    func sharerDidCancel(_ sharer: Sharing) {
        print("canceled")

        let title = "Share Cancelled"
        let message = "Share on Facebook was Cancelled"
        let alertController = UIAlertController.init(title: title, message: message, preferredStyle: UIAlertController.Style.alert)
        self.present(alertController, animated: true, completion: nil)
    }


}
```

制作可能是一个问题我找到了一些答案,所以我用链接内容的共享对话框制作了它,问题在于内容的创建,我解决了链接内容的问题,我会尝试使用其他类型的内容,我向您展示如何完成它,意思是,这是具有正确内容的正确代码,请记住这是 swift 5

let content = ShareLinkContent()

        let api = "https://developers.facebook.com"
        let endpoint = "/"
        let url = URL(string: api + endpoint)
        content.contentURL = url!

        let dialog = ShareDialog(fromViewController: self, content: content, delegate: self as? SharingDelegate)
        dialog.mode = mode
        print(dialog.canShow)
        dialog.show()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM