gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 05:13:40 26 4
gpt4 key购买 nike

我花了一周的时间尝试显示来自 facebook 的 shareDialog,但没有任何效果,我的登录按钮正常工作,我在 Android 中的工作正常,但 IO 无法正常工作,我已经从 Facebook 安装了 SDK,我将所有文件夹 Bolt 放入了项目中,但似乎没有任何东西对我有用,我已经为 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()

关于ios - Swift 5 IOS facebook 共享对话框未显示在我的应用程序上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59417563/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com