简体   繁体   English

Swift SFSafariViewController present 显示空白页

[英]Swift SFSafariViewController present show blank page

EDIT2 here is a MWC containing 2 classes with only the SFSafariViewController for opening an url embedded.这里的 EDIT2 是一个包含 2 个类的 MWC,其中只有 SFSafariViewController 用于打开嵌入的 url。 What I get on screen is a blank page The files are also here https://github.com/camillegallet/testSwiftSafariEmbeded我在屏幕上看到的是一个空白页文件也在这里https://github.com/camillegallet/testSwiftSafariEmbeded

AppDelegate应用委托

import UIKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?

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



    func applicationWillResignActive(_ application: UIApplication) {
        // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
        // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
    }

    func applicationDidEnterBackground(_ application: UIApplication) {
        // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    }

    func applicationWillEnterForeground(_ application: UIApplication) {
        // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
    }

    func applicationDidBecomeActive(_ application: UIApplication) {
        // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    }

    func applicationWillTerminate(_ application: UIApplication) {
        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    }


}

View controller查看 controller

import UIKit
import WebKit
import SafariServices


class ViewController: UIViewController {



    @IBOutlet weak var KronosWebsite: WKWebView!


    override func loadView() {
        KronosWebsite = WKWebView()
        self.view = KronosWebsite
    }


    override func viewDidLoad() {
        super.viewDidLoad()
        openGoogle()
    }


    func openGoogle(){
        let url2=URL(string: "http://www.google.com")
        let web = SFSafariViewController(url: url2!)
        let keyWindow = UIApplication.shared.windows.filter {$0.isKeyWindow}.first

        if var topController = keyWindow?.rootViewController {
            while let presentedViewController = topController.presentedViewController {
                topController = presentedViewController
            }
            do{
                topController.present(web, animated: true, completion: nil)

            }catch let error {
                DispatchQueue.main.async {
                    print("ERROR \(error)")
                }
            }
        }
    }
}

I've this old function in a library我在图书馆里有这个旧的 function

    public func authorizeSafariEmbedded(from controller: UIViewController, at url: URL) throws -> SFSafariViewController {
        safariViewDelegate = OAuth2SFViewControllerDelegate(authorizer: self)
        let web = SFSafariViewController(url: url)
        web.title = oauth2.authConfig.ui.title
        web.delegate = safariViewDelegate as! OAuth2SFViewControllerDelegate
        if #available(iOS 10.0, *), let barTint = oauth2.authConfig.ui.barTintColor {
            web.preferredBarTintColor = barTint
        }
        if #available(iOS 10.0, *), let tint = oauth2.authConfig.ui.controlTintColor {
            web.preferredControlTintColor = tint
        }
        web.modalPresentationStyle = oauth2.authConfig.ui.modalPresentationStyle

        willPresent(viewController: web, in: nil)
        controller.present(web, animated: true, completion: nil)

        return web
    }

I call this function with those lines我用这些线称之为 function

                let keyWindow = UIApplication.shared.windows.filter {$0.isKeyWindow}.first
                if var topController = keyWindow?.rootViewController {
                    while let presentedViewController = topController.presentedViewController {
                        topController = presentedViewController
                    }
                    do{
                        let web = try authorizer.authorizeSafariEmbedded(from: topController,at: url!)
                    }catch let error {
                        DispatchQueue.main.async {
                            print("ERROR \(error)")
                        }
                    }
                }

But I keep having a blank page, I've not found a correct working solution on the web I've also tested with let url=URL(string: " http://www.google.com ")但是我一直有一个空白页,我没有在 web 上找到正确的工作解决方案,我也用 let url=URL(string: " http://www.google.Z4D236D9A2D102C506AD1C50DAB4 ") 进行了测试

even this don't works即使这样也行不通

    public func authorizeSafariEmbedded(from controller: UIViewController, at url: URL) throws -> SFSafariViewController {
        let web = SFSafariViewController(url: url)
        web.title = oauth2.authConfig.ui.title
        controller.present(web, animated: true, completion: nil)

        return web
    }

Thanks in advance提前致谢

Here what I've done to make it works这是我为使它起作用所做的工作

import UIKit
import WebKit
import SafariServices

class ViewController: UIViewController {

    var safariVC = SFSafariViewController(url: URL(string: "https://apple.com")!)

    @IBOutlet weak var KronosWebsite: WKWebView!

    override func loadView() {
        KronosWebsite = WKWebView()
        self.view = KronosWebsite
    }

    func addViewControllerAsChildViewController() {
        addChild(safariVC)
        self.view.addSubview(safariVC.view)
        safariVC.didMove(toParent: self)
        self.setUpConstraints()

    }

     override func viewDidLoad() {
          super.viewDidLoad()
          addViewControllerAsChildViewController()
      }


    func setUpConstraints() {
           self.safariVC.view.translatesAutoresizingMaskIntoConstraints = false
           self.safariVC.view.topAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.topAnchor, constant: 30).isActive = true
           self.safariVC.view.bottomAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.bottomAnchor, constant: -30).isActive = true
           self.safariVC.view.leadingAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.leadingAnchor, constant: 30).isActive = true
           self.safariVC.view.trailingAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.trailingAnchor, constant: -30).isActive = true

       }



}

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

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