Notice
Recent Posts
Recent Comments
Link
투케이2K
58. (ios/swift) 디바이스 Vibrate 진동 기능 수행 - AudioServicesPlaySystemSound 본문
[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT
[소스 코드]
// MARK: - [extension 정의 실시 : UIDevice]
extension UIDevice {
// [설명 : 디바이스 진동 기능 수행 메소드]
// [필요 import : import AVFoundation]
// [사용 방법 : UIDevice.vibrate()]
static func vibrate() {
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate)
}
}
반응형
'IOS' 카테고리의 다른 글
60. (ios/swift) 파이어베이스 푸시 알림 fcm 메시지 http 프로토콜 사용해 전송 실시 - talend api (0) | 2021.11.28 |
---|---|
59. (ios/swift) 디바이스 사운드 (sound) 재생 수행 실시 - SystemSoundID (0) | 2021.11.28 |
57. (ios/swift) 파이어베이스 푸시 알림 (firebase push) 환경 적용 방법 (0) | 2021.11.26 |
56. (ios/swift) NotificationCenter 노티피케이션 센터 사용해 브로드 캐스트 이벤트 알림 처리 (0) | 2021.11.25 |
55. (ios/swift) ios 및 자바스크립트 웹뷰 통신 (간략 정리) (0) | 2021.11.25 |
Comments