当我连接到福特汽车的赛车时,我正在使用以下方法从系统接收通知:
NotificationCenter.default.addObserver(forName:NSNotification.Name.EAAccessoryDidConnect
添加info.plist键
受支持的外部附件协议
com.smartdevicelink.prot29
但是在使用Chevrolet carplay时我无法收到通知,并且不知道chevrolet info.plist应该添加什么键?
任何帮助都将是有益的!
答案 0 :(得分:0)
将相应记录添加到项目的权利文件中
使您的appdelegate确认为 CPApplicationDelegate ,然后 实现以下实例方法
application(_:didDisconnectCarInterfaceController:from:) 告知应用程序代表该应用程序与CarPlay界面断开连接。
application(_:didConnectCarInterfaceController:to:) 告知应用程序代表该应用程序已连接到CarPlay界面。
找到有关其他各种监视事件here
的更多信息