調用視圖控制器方法在AppDelagate我調用的方法無法從AppDelegate中
func example() {
ViewController().test()
}
,並在我的ViewController方法下面是
func test() {
testView.userInteractionEnabled = true
buttonTapped(UIButton())
restartTimer()
}
但它崩潰每當我調用該方法,由於testView沒有錯誤。 testView是ViewController中的一個視圖,而不是AppDelegate中的視圖,但我不知道如何使它執行,就像我在ViewController中調用它一樣。
以您沒有創建故事板的方式創建ViewController的實例。我假設你的testView是一個IBOutlet? – ad121
testView是一個IBOutlet – Sason
你在AppDelegate中導入了ViewController嗎? –