AVFoundation2 Xcode AVFoundation,AVKit import 에러 Cannot load underlying module for 'AVFoundation' 라는 에러가 갑자기 뜨는분들이 계실겁니다. Show live issues 체크해제! 해주세요 2023. 6. 20. iOS Swift AVPlayer를 이용해서 로컬 사운드를 재생해보자. import AVKit import AVFoundation 2개 먼저 임포트 해주세요. 전역변수로 var avPlay: AVAudioPlayer? 하나 선언해줍니다. 그리고 함수를 하나 만들어줍니다. private func playSound(name: String, type: String) { //사운드플레이어 ( 파일명, 확장자 ) let url = Bundle.main.url(forResource: name, withExtension: type) if let url = url{ do{ avPlay = try AVAudioPlayer(contentsOf: url) guard let sound = avPlay else{ return } sound.prepareToPlay() sound.play() } c.. 2021. 10. 1. 이전 1 다음