AVFoundation
iOS: 오디오 녹음, 재생, 저장하기
iOS: 오디오 녹음, 재생, 저장하기
2021.07.06개요 AVFoundation을 이용해서 오디오를 녹음, 재생, 저장해보자. 코드를 작성하기 전에 먼저 AVFoundation 요소 중에서 세 가지 클래스를 살펴본다. AVAudioSession AVAudioRecorder AVAudioPlayer AVAudioSession class AVAudioSession: NSObject An audio session acts as an intermediary between your app and the operating system—and, in turn, the underlying audio hardware. 오디오 세션은 앱과 운영 체제 사이의 중개자 역할을 하며 기본 오디오 하드웨어 역할도 합니다. 모든 iOS, tvOS, watchOS 앱에는 다음 동작으로..