This commit is contained in:
Михаил Капелько
2024-01-16 19:08:46 +03:00
parent 061548b8b4
commit 76cef40423
3 changed files with 12 additions and 3 deletions

View File

@@ -31,7 +31,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate
window?.makeKeyAndVisible()
/**/print("ИГР App.didFLWO")
testMic1()
//testMic1()
testMic2()
return true
}
@@ -43,4 +44,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate
Bus.send(Mic.K.isActive, false)
}
}
func testMic2() {
DispatchQueue.main.asyncAfter(deadline: .now() + 2) {
Bus.send(Mic.K.activityDate, Date() + 5)
}
}
}