web-dev-qa-db-fra.com

Échangez rootViewController avec une animation?

J'essaie de passer à un autre contrôleur de vue racine avec une barre d'onglets; via le délégué de l'application, et je souhaite ajouter une animation de transition. Par défaut, il ne montrerait que la vue sans aucune animation.

let tabBar = self.instantiateViewController(storyBoard: "Main", viewControllerID: "MainTabbar")
let appDelegate = UIApplication.shared.delegate as! AppDelegate
appDelegate.window = UIWindow(frame: UIScreen.main.bounds)
appDelegate.window?.rootViewController = tabBar
appDelegate.window?.makeKeyAndVisible()

C'est ainsi que j'ai basculé sur un autre contrôleur rootview.

37
Chris Mikkelsen

J'ai évalué UIView.transition(from: view, to: view) et UIView.transition(with: view) il y a quelque temps et j'ai fini par utiliser ceci: (mais malheureusement, je ne me souviens plus pourquoi)

guard let window = UIApplication.shared.keyWindow else {
    return
}

guard let rootViewController = window.rootViewController else {
    return
}

let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "MainTabbar")
vc.view.frame = rootViewController.view.frame
vc.view.layoutIfNeeded()

UIView.transition(with: window, duration: 0.3, options: .transitionCrossDissolve, animations: {
    window.rootViewController = vc
}, completion: { completed in
    // maybe do something here
})
115
d.felber

Essaye ça:

UIView.transition(from: appdelegate.window.rootViewController!.view, to: tabbar.view, duration: 0.6, options: [.transitionCrossDissolve], completion: {
    _ in
    appdelegate.window.rootViewController = tabbar
})
6
JPetric

Une solution alternative:

let stb = UIStoryboard(named: "Main", bundle: nil)
let rootVC = stb.instantiateViewController(withIdentifier: "TabBarVC")
let snapshot = (UIApplication.shared.keyWindow?.snapshotView(afterScreenUpdates: true))!
rootVC.view.addSubview(snapshot);

UIApplication.shared.keyWindow?.rootViewController = rootVC;
UIView.transition(with: snapshot, duration: 0.4, options: .transitionCrossDissolve, animations: {
    snapshot.layer.opacity = 0;
}, completion: { (status) in
    snapshot.removeFromSuperview()
})
2
Muhammad Ahmed Baig

Swift 4

Coller la fonction dans AppDelegate:

func setRootViewController(_ vc: UIViewController, animated: Bool = true) {
    guard animated, let window = self.window else {
        self.window?.rootViewController = vc
        self.window?.makeKeyAndVisible()
        return
    }

    window.rootViewController = vc
    window.makeKeyAndVisible()
    UIView.transition(with: window,
                      duration: 0.3,
                      options: .transitionCrossDissolve,
                      animations: nil,
                      completion: nil)
}
1
Wiingaard