我正在尝试实现与 Music.app 相同的 AirPlay 按钮。该按钮会显示一个弹出窗口,其中包含可用设备列表,用户可以选择这些设备来重新路由音频。
在搜索我的问题时,我发现了 MPVolumeView 但这不是 Music.app 使用的。甚至控制中心也在使用该弹出窗口。
如何在我的应用中显示该弹出窗口?
更新:
我在 AppStore 应用程序中也看到了同样的弹出窗口,所以它应该是一个公共(public) API。
Best Answer-推荐答案 strong>
AVRoutePickerView 在 iOS 11+ 中可用,提供此接口(interface)。
AVRoutePicketView 就像一个 UIButton ,它在模拟器中工作:
let routePickerView = AVRoutePickerView(frame: .init(x: 0, y: 0, width: 40, height: 40))
routePickerView.tintColor = .white
view.addSubview(routePickerView)
如果您的应用支持旧版本的 iOS,那么您需要检查您的应用运行的 iOS 版本,并在必要时使用旧的 MPVolumeView (MPVolumeView 在模拟器中不起作用!)。
关于ios - AirPlay:通过显示可用设备弹出窗口重定向音频,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/51548996/
|