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

前端 未结 2 775
鱼传尺愫
鱼传尺愫 2021-02-08 14:40

General
I\'m developing a third party keyboard and am currently trying to mimic the new keyboard clicks that Apple introduced in iOS 10b4.

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-08 14:52

    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()
    }
    

提交回复
热议问题