수색…


소개

MPVolumeView 클래스는 사용자에게 시스템 오디오 출력 볼륨을 설정하기위한 슬라이더 컨트롤과 오디오 출력 경로를 선택하기위한 버튼을 제공하는 볼륨 뷰입니다.

비고

MPVolumeView는 실제 iOS 기기에서 제작 및 실행될 때만 나타나며 시뮬레이터에서는 작동하지 않습니다.

MPVolumeView 추가하기

// Add MPVolumeView in a holder view
let mpVolumeHolderView = UIView(frame: CGRect(x: 0, y: view.bounds.midY, width: view.bounds.width, height: view.bounds.height))
// Set the holder view's background color to transparent
mpVolumeHolderView.backgroundColor = .clear
let mpVolume = MPVolumeView(frame: mpVolumeHolderView.bounds)
mpVolume.showsRouteButton = true
mpVolumeHolderView.addSubview(mpVolume)
view.addSubview(mpVolumeHolderView)
// the volume view is white, set the parent background to black to show it better in this example
view.backgroundColor = .black

!!! MPVolumeView는 시뮬레이터가 아닌 실제 장치에서만 작동한다는 점이 매우 중요합니다.

장치에 슬라이더와 경로 버튼이있는 MPVolumeView



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow