티스토리 뷰
728x90
반응형
There is no programmatic way to control the system volume in iOS,
iOS에서는 프로그래밍 방식으로 시스템 음량을 조절 할 수 있는 방법을 제공하지 않지 않는다.
but you can use the MediaPlayer framework’s MPVolumeView class to present a standard user interface for controlling system volume.
하지만 "MPVolumeView class"를 사용해서 시스템 볼륨을 제어 할 수 있다.
extension MPVolumeView {
static func setVolume(_ volume: Float) -> Void {
let volumeView = MPVolumeView()
let slider = volumeView.subviews.first(where: { $0 is UISlider }) as? UISlider
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.01) {
slider?.value = volume
}
}
}
struct VolumeSlider: UIViewRepresentable {
func makeUIView(context: Context) -> MPVolumeView {
return MPVolumeView(frame: .zero)
}
func updateUIView(_ view: MPVolumeView, context: Context) {}
}
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 표현 언어(expression language)
- REST API
- 상품 등록
- 특정 문자를 기준으로 자르기
- MainActor
- java-개발 환경 설정하기
- In App Purchase
- React
- java web-mvc
- 스프링 시큐리티(spring security)-http basic 인증
- jstl(java standard tag library)-core
- System.Diagnostics
- jsp 오픈 소스
- java 키워드 정리
- 진수 변환
- 인텔리제이(intellij)
- java.sql
- await
- jstl(java standard tag library)
- nl2br
- 스프링 프레임워크(spring framework)
- 스프링 프레임워크(spring framewordk)
- 제품 등록
- system.io
- error-java
- 문자 자르기
- 스프링 시큐리티(spring security)
- 메이븐(maven)
- .submit()
- 람다식(lambda expression)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함