Notice
Recent Posts
Recent Comments
Link
투케이2K
59. (ios/swift) 디바이스 사운드 (sound) 재생 수행 실시 - SystemSoundID 본문
[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT
[소스 코드]
// MARK: - [extension 정의 실시 : UIDevice]
extension UIDevice {
// [설명 : 디바이스 사운드 재생 메소드 : 무음 모드일 경우도 소리 재생됨]
// [필요 import : import AVFoundation]
// [사용 방법 : UIDevice.sound()]
static func sound() {
//AudioServicesPlaySystemSound(SystemSoundID(1003)) // SMSReceived [ReceivedMessage.caf]
//AudioServicesPlaySystemSound(SystemSoundID(1004)) // SMSReceived [SentMessage.caf]
//AudioServicesPlaySystemSound(SystemSoundID(1016)) // SMSSent [tweet_sent.caf]
AudioServicesPlaySystemSound(SystemSoundID(1307)) // SMSReceived_Selection [sms-received1.caf]
}
}
반응형
'IOS' 카테고리의 다른 글
61. (ios/swift) available 사용해 iOS 특정 버전 version 이상 분기 처리 방법 (0) | 2021.11.28 |
---|---|
60. (ios/swift) 파이어베이스 푸시 알림 fcm 메시지 http 프로토콜 사용해 전송 실시 - talend api (0) | 2021.11.28 |
58. (ios/swift) 디바이스 Vibrate 진동 기능 수행 - AudioServicesPlaySystemSound (0) | 2021.11.27 |
57. (ios/swift) 파이어베이스 푸시 알림 (firebase push) 환경 적용 방법 (0) | 2021.11.26 |
56. (ios/swift) NotificationCenter 노티피케이션 센터 사용해 브로드 캐스트 이벤트 알림 처리 (0) | 2021.11.25 |
Comments