我已经为汽车 CarPlay 开发了应用程序。应用程序适用于 iOS 11 和 12 Carplay 模拟器。我正在尝试在 iOS 13 CarPlay 模拟器上运行应用程序,但应用程序没有出现在 CarPlay 模拟器上。
我已经运行了以下命令:
defaults write com.apple.iphonesimulator CarPlayExtraOptions -bool YES
defaults write com.apple.iphonesimulator CarPlayProtocols -array-add com.mycarbundle.app
defaults write com.apple.iphonesimulator CarPlay -bool YES
1.Carplay连接
NotificationCenter.default
.addObserver(forName: UIScreen.didConnectNotification,
object: nil,
queue: .main) { (notification) in
print("Carplay Connected")
}
2.Carplay DisConnect
NotificationCenter.default
.addObserver(forName: UIScreen.didDisconnectNotification,
object: nil,
queue: .main) { (notification) in
print("Carplay DisConnected")
}
这个方法没有被调用。如果有人在 iOS 13 中做过,请帮助我?
谢谢