我可以WalkthroughView
在UIViewController
页面上添加,但如何WalkthroughView
在 appDelegate 上添加?
override open func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
let defaults = UserDefaults.standard
let hasViewedWalkthrough = defaults.bool(forKey: "hasViewedWalkthrough")
if !hasViewedWalkthrough {
//
print("succes")
//
if let pageVC = storyboard?.instantiateViewController(withIdentifier: "WalkthroughViewController") as? WalkthroughViewController {
present(pageVC, animated: true, completion: nil)
}
}
}