我正在为 CarPlay 开发导航应用程序,在 iOS 12 中,CPApplicationDelegate 提供了两种方法来检测 CarPlay 是否开启:
func application(_ application: UIApplication, didConnectCarInterfaceController interfaceController: CPInterfaceController, to window: CPWindow)
和
func application(_ application: UIApplication, didDisconnectCarInterfaceController interfaceController: CPInterfaceController, from window: CPWindow)
在 iOS 13 中,这些方法已被弃用,Apple 提供了新的委托:CPTemplateApplicationSceneDelegate
我试图将这个新的委托 CPTemplateApplicationSceneDelegate 连接到我的服务,该服务为 CarPlay 提供所有操作,但我看到的唯一可以帮助我的功能是:
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration
所以我的问题是如何检测 CarPlay 是否已连接以及如何为在新 iOS 13 CarPlay 的一个窗口中启动的 CarPlay 提供操作。