I have navigation app and now I'm developing CarPlay Dashboard. I can't launch InterfaceController after click button in CPDashboard.
My button code:
let searchButton = CPDashboardButton(titleVariants: ["Find"], subtitleVariants: ["place"], image: searchImage) { [weak self] (_) in
self?.openSearchView()
}
After button tap, func openSearchView() is called, but view still stay in dashboard.
There is no info in docs, how can we switch between view (interface controller <-> dashboard controller)