System Sound 재생하기
참조
사운드ID로 재생하기
- 사운드ID는 위의 참조 사이트에서 가져왔음.
// SMS
AudioServicesPlaySystemSound(1009)
// KeyPressed
AudioServicesPlaySystemSound(1104)
// For positive sounds
AudioServicesPlaySystemSound(1054)
// And, negative sounds
AudioServicesPlaySystemSound(1053)
* 알고 있는 사운드ID로 재생하기
파일명으로 재생하기
- 파일명의 위의 참조 사이트에서 가져왔음.
// 1. 옵셔널을 체크하여?
let fileURL:URL? = URL(fileURLWithPath:"/System/Library/Audio/UISounds/Modern/sms_alert_note.caf")
if let url = fileURL {
varsoundID:SystemSoundID=0
AudioServicesCreateSystemSoundID(urlasCFURL, &soundID)
AudioServicesPlaySystemSound(soundID)
}
// 2. 옵셔널을 강제 치환하여?
let fileURL:URL? =URL(fileURLWithPath:"/System/Library/Audio/UISounds/Modern/sms_alert_note.caf")
var soundID:SystemSoundID=0
AudioServicesCreateSystemSoundID(fileURLas!CFURL, &soundID)
AudioServicesPlaySystemSound(soundID)
AudioServicesPlaySystemSound(1009)