如果不自定,默认调出的是系统的键盘。
如果要修改的话,重新给键盘的inputView赋值。
<pre name="code" class="objc">//自定义文本框的键盘
//self.inputField.inputView = [UIButton buttonWithType:UIButtonTypeContactAdd];
UIDatePicker *picker = [[UIDatePicker alloc]init];
picker.datePickerMode = UIDatePickerModeDate;
picker.locale = [[NSLocale alloc]initWithLocaleIdentifier:@"zh_CN"];
//这就是自定的文本框的键盘(不设置的话默认使用的是系统的键盘)
self.inputField.inputView = picker;