What are the system sound ids for the new keyboard clicks in iOS 10?

筅森魡賤 提交于 2019-12-03 06:59:09

iOS 10.0 - iOS 11.0 b5

Press Click - ID: 1123

Press Delete - ID: 1155

Press Modifier - ID: 1156

Comment (1): Same IDs work for iOS 11 beta 5

Implemented in swift using an enum (extend with your own other system sound id's):

import AudioToolbox

enum SystemSound: UInt32 {

    case pressClick    = 1123
    case pressDelete   = 1155
    case pressModifier = 1156

    func play() {
        AudioServicesPlaySystemSound(self.rawValue)
    }

}

and use like this:

@IBAction func pressedDigit(sender : UIButton) {
    SystemSound.pressClick.play()
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!