IOS41 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. Xcode Errors 'GoogleUtilities/GULSceneDelegateSwizzler.h' file not found 해결법 pod update 명령어로 해결했습니다! 2021. 9. 9. Xcode Errors were encountered while preparing your device for development. Please check the Devices and Simulators Window. 해결 디바이스의 전원을 껏다키면 해결... 2021. 9. 6. 앱스토어 리젝 CFBundlesShortVersionString 앞에 붙은게 달라질수 있어요 CFBundlesShortVersionString 값 '버전'이 포함 된 iOS 애플리케이션 앱이름.app의 CFBundlesShortVersionString값 '버전'과 일치하지 않습니다. 이런 문제를 겪었는데 저는 노티피케이션 서비스의 버전과 앱 버전이 달라서 리젝을 먹었습니다. 타겟에 앱과 노티피케이션서비스의 버전이 달라서 리젝을 먹었는데 2개의 버전이 동일해야 한다고 합니다. 2021. 2. 26. 이전 1 ··· 3 4 5 6 7 8 9 ··· 11 다음