当应用程序进入前台时,我正在尝试更改标签上的文本,但我总是得到
致命错误:在展开可选值时意外发现 nil
ViewController.swift
@IBOutlet var textLabel: UILabel!
func showLabel() {
textLabel.text = "Welcome back"
}
和
AppDelegate.swift
func applicationWillEnterForeground(application: UIApplication) {
ViewController().showLabel()
}
任何想法如何解决它?