в AppDelegate. как правильно запустить db.method из одного из вью в ContentView по нажатию Button?
Добавт в файл AppDelegate функцию: func appDelegate() -> AppDelegate { return unsafeDowncast(UIApplication.shared.delegate, to: AppDelegate.self) } И где-то в обработчике кнопки: @objc private func buttonDidTapped(sender: UIButton) { appDelegate().db.method() }
Обсуждают сегодня