Carplay 应用程序未在 iOS 13 模拟器上显示
Carplay Application not showing on iOS 13 simulator
我开发了 Automotive 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 断开连接
NotificationCenter.default
.addObserver(forName: UIScreen.didDisconnectNotification,
object: nil,
queue: .main) { (notification) in
print("Carplay DisConnected")
}
此方法未被调用。
如果有人在 iOS 13?
做过,请帮助我
谢谢
Xcode 11.0 和 11.2.1 版本未在模拟器中显示 carplay 应用程序。这是一个 xcode 错误。它现在正在 Xcode 11.3 beta 上工作。
我开发了 Automotive 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 断开连接
NotificationCenter.default
.addObserver(forName: UIScreen.didDisconnectNotification,
object: nil,
queue: .main) { (notification) in
print("Carplay DisConnected")
}
此方法未被调用。 如果有人在 iOS 13?
做过,请帮助我谢谢
Xcode 11.0 和 11.2.1 版本未在模拟器中显示 carplay 应用程序。这是一个 xcode 错误。它现在正在 Xcode 11.3 beta 上工作。