How to disable iOS 8 emoji keyboard?

前端 未结 12 2168
说谎
说谎 2020-12-03 00:33

Is there any option to stop showing the emoji keyboard in iOS 8? It is not available in numpad and secure text but for email it is there. If it is not possible to disable i

12条回答
  •  醉酒成梦
    2020-12-03 01:33

    Swift 3.1 Solution

    // MARK: - Text Field Delegate
    
     func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
            return textField.textInputMode != nil
        }
    

提交回复
热议问题