Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Git
- Swift
- SwiftUI
- Apple
- stack
- IOS
- geofencing
- JPA
- Xcode
- error
- Archive
- Firebase
- 한글
- view
- Notification
- mac
- 웹뷰
- window
- UIButton
- MacOS
- Session
- appstore
- Code
- darkmode
- github
- rxswift
- Realm
- FLUTTER
- iOS16
- 개발자
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
Swift ) 전화, 이어폰 감지 ( AVAudioSession ) - EEYatHo iOS 본문
반응형
전화온거 감지. ( 인터럽트 발생 및 감지 )
1. import
import AVFoundation
2. 노티 옵저버 추가 ( AVAudioSession.interruptionNotification )
NotificationCenter.default.addObserver(self,
selector: #selector(handleInterruptionOccured(notification:)),
name: AVAudioSession.interruptionNotification,
object: AVAudioSession.sharedInstance())
3. 처리 로직
@objc private func handleInterruptionOccured(notification: Notification) {
let interruptionType = notification.userInfo![AVAudioSessionInterruptionTypeKey] as! AVAudioSession.InterruptionType
if interruptionType == .began {
// 전화(Interruption)가 시작될 때 처리 코드
} else {
let options = notification.userInfo![AVAudioSessionInterruptionOptionKey] as! AVAudioSession.InterruptionOptions
if options == .shouldResume {
// 전화가 끊겼을 때 처리 코드
}
}
}
이어폰 감지. ( Route가 변화하는 것을 감지 )
1. import
import AVFoundation
2. 노티 옵저버 추가 ( AVAudioSession.routeChangeNotification )
NotificationCenter.default.addObserver(self,
selector: #selector(handleRouteChanged(notification:)),
name: AVAudioSession.routeChangeNotification,
object: AVAudioSession.sharedInstance())
3. 처리 로직 ( 이어폰 빠졌을 때 재생 멈춤 등 별도 처리 )
@objc private func handleRouteChanged(notification: Notification) {
let info = notification.userInfo!
let reason = info[AVAudioSessionRouteChangeReasonKey] as! AVAudioSession.RouteChangeReason
if reason == .oldDeviceUnavailable {
let prevRoute = info[AVAudioSessionRouteChangePreviousRouteKey]. as! AVAudioSessionRouteDescription
let prevOutput = prevRoute.outputs[0]
let portType = prevOutput.portType
if portType == .headphones {
// 제거된 디바이스가 이어폰이다 -> 영상이나 음악 재생 멈추는 코드
}
}
}
'iOS, Swift' 카테고리의 다른 글
Swift ) 리뷰, 별점 받기 - EEYatHo (0) | 2021.09.04 |
---|---|
Swift ) Source type 에러 - EEYatHo iOS (0) | 2021.09.03 |
Swift ) 부모자식 뷰컨은 왜쓰는가 - EEYatHo iOS (0) | 2021.08.24 |
iOS ) CPU아키텍처, arm, Xcode12 빌드오류 정리 - EEYatHo iOS (0) | 2021.08.17 |
Swift ) NSMutableDictionary vs NSDictionary - EEYatHo iOS (0) | 2021.08.11 |
Comments