从非UIViewController类(可可类的接口类)到会话vc获取值(我正在使用通知中心)后,我试图显示会话vc。
现在是第一次,我的会话vc在我当前的顶级vc上正确显示。但是第二次之后,我只得到白屏。但是会话vc中具有的api调用值仍在运行。我可以在控制台中看到。
TopView.swift:
import UIKit
public extension UIWindow {
public var visibleViewController: UIViewController? {
return UIWindow.getVisibleViewControllerFrom(vc: self.rootViewController)
}
public static func getVisibleViewControllerFrom(vc: UIViewController?) -> UIViewController? {
if let nc = vc as? UINavigationController {
return UIWindow.getVisibleViewControllerFrom(vc: nc.visibleViewController)
} else if let tc = vc as? UITabBarController {
return UIWindow.getVisibleViewControllerFrom(vc: tc.selectedViewController)
} else {
if let pvc = vc?.presentedViewController {
return UIWindow.getVisibleViewControllerFrom(vc: pvc)
} else {
return vc
}
}
}
}
func getTopViewController() -> UIViewController? {
let appDelegate = UIApplication.shared.delegate
if let window = appDelegate!.window {
return window?.visibleViewController
}
return nil
}
我的应用程序代表:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
NotificationCenter.default.addObserver(self, selector: #selector(AppDelegate.onOver(notification:)), name: NSNotification.Name(rawValue: "openBoard"), object: nil);
}
@objc func onGameOver(notification: NSNotification)
{
if let score = notification.object as? NSDictionary
{
let storyBoard = UIStoryboard.init(name: "Trai", bundle: nil);
if let sessionvc = storyBoard.instantiateViewController(withIdentifier:
"sessionvc") as? sessionvc{
if let topVC = getTopViewController() {
//topVC.dismiss(animated: true, completion: nil)
topVC.present(sessionvc, animated: true)
}
}
}
}
我第一次没有得到它。但是从第二次开始,如果我尝试做同样的事情,我将得到白屏,但仍然是sessionvc数据和所有加载在我的控制台中。任何帮助
答案 0 :(得分:0)
可能是后期重播。让我知道它是否对您有帮助。
更改您的方法@objc func onGameOver(notification: NSNotification)
if let topVC = getTopViewController() {
let Yourvc = YourViewController()
topVC = Yourvc
topVC.present(topVC, animated: true)
}
否则,您可以尝试这种方法:
if var topVC = getTopViewController() {
self.window?.rootViewController = topVC
topVC.present(scoreBoardController, animated: true)
}
尝试让我知道它是否有效。