//---------------------- 键盘知识 //键盘外观 /* enum UIKeyboardAppearance : Int { case Default // Default apperance for the current input method. case Dark case Light } */ // textField.keyboardAppearance = .default //首字母是否大写 /* enum UITextAutocapitalizationType : Int { case None 不自动大写 case Words 单词首字母大写 case Sentences 句子的首字母大写 case AllCharacters 所有字母都大写 } */ textField.autocapitalizationType = .words //设置键盘完成的按钮样式 /* enum UIReturnKeyType : Int { case Default 默认灰色按钮,标有Return case Go 标有Go的蓝色按钮 case Google 标有Google的蓝色按钮,用语搜索 case Join 标有Join的蓝色按钮 case Next 标有Next的蓝色按钮 case Route 标有Route的蓝色按钮 case Search 标有Search的蓝色按钮 case Send 标有Send的蓝色按钮 case Yahoo 标有Yahoo的蓝色按钮 case Done 标有Yahoo的蓝色按钮 case EmergencyCall 紧急呼叫按钮 }*/ textField.returnKeyType = .yahoo