Swift - 从viewController访问AppDelegate窗口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift - 从viewController访问AppDelegate窗口相关的知识,希望对你有一定的参考价值。
我在我的应用程序中进行了演练(入门流程),我想要一个跳过按钮。该按钮位于viewController上,因此我发现移动到另一个viewController的最佳方法是访问app delegate窗口。
但是,它一直让我得到一个AppDelegate.Type没有名为“window”的成员的错误。
@IBAction func skipWalkthrough(sender: AnyObject) {
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
AppDelegate.window!.rootViewController = RootViewController
}
这种方法有什么问题吗?
提前致谢!
答案
你有一个错字它应该是appDelegate
而不是AppDelegate
。像这样:
@IBAction func skipWalkthrough(sender: AnyObject) {
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
appDelegate.window!.rootViewController = RootViewController
}
Swift 3.2
@IBAction func skipWalkthrough(_ sender: AnyObject) {
let appDelegate = UIApplication.shared.delegate as! AppDelegate
appDelegate.window!.rootViewController = controller
}
另一答案
这是有或没有故事板,它适用于swift3 +
let appDelegate = UIApplication.shared.delegate as? AppDelegate
let mainStoryboard = UIStoryboard(name: "Main", bundle: nil)
let homeController = mainStoryboard.instantiateViewController(withIdentifier: "HomeViewController") as! HomeViewController
appDelegate?.window?.rootViewController = homeController
另一答案
斯威夫特3
这是一种更好的方法:
if let window = NSApplication.shared().windows.first {
window.acceptsMouseMovedEvents = true;
}
另一答案
您正在使用协议名称(即AppDelegate
)而不是实例:
应该:
appDelegate.window!.rootViewController = RootViewController
另一答案
此解决方案适用于:登录/注册后以编程方式添加UITabbarController
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
appDelegate.window!.rootViewController = tabs //()
appDelegate.window!.makeKeyAndVisible()
另一答案
您可以从应用程序的任何位置访问标签栏。使用以下:
let appDelegate = UIApplication.shared.delegate as! AppDelegate
if let tabBarController = appDelegate.window!.rootViewController as? UITabBarController {
if let tabItems = tabBarController.tabBar.items {
let tabItem = tabItems[2]
tabItem.badgeValue = "5" //enter any value
}
}
另一答案
您还可以使用条件绑定来到达window
。
if let window = UIApplication.shared.windows.first {
// use window here.
}
以上是关于Swift - 从viewController访问AppDelegate窗口的主要内容,如果未能解决你的问题,请参考以下文章
从其他 viewController 访问 Swift 中的 UserDefaults
从Swift中的另一个ViewController访问rightBarButton函数
在 Swift 中从另一个 ViewController 访问变量
项目在 Swift 中时无法从 Objective-C 访问 swift 类