我希望我的按钮能够将用户重新显示在登机屏幕上,因为它包含了一些重要说明给我的应用程序。 第一次启动时,我第一次显示我的入门屏幕; 我目前的功能如下:
@IBAction func anleitung(sender: RoundButtons) {
let appDelegate = AppDelegate()
appDelegate.window?.rootViewController?.present(OnboardingScreen(), animated: true, completion: nil)
}
这实际上就像我试过的第四种方式,但显然,它们都没有奏效。你知道怎么做吗?
谢谢你看看!祝你有美好的一天!
答案 0 :(得分:0)
@IBAction func anleitung(sender: RoundButtons) {
let appDelegate = UIApplication.shared.delegate as! AppDelegate
appDelegate.window?.rootViewController?.present(OnboardingScreen(), animated: true, completion: nil)
}