Điều đáng chú ý là nếu bạn muốn một trường hiện đang tập trung để cập nhật loại bàn phím ngay lập tức, có thêm một bước:
// textField is set to a UIKeyboardType other than UIKeyboardTypeEmailAddress
[textField setKeyboardType:UIKeyboardTypeEmailAddress];
[textField reloadInputViews];
Nếu không có lệnh gọi reloadInputViews
, bàn phím sẽ không thay đổi cho đến khi trường được chọn ( phản hồi đầu tiên ) mất và lấy lại tiêu điểm.
Một danh sách đầy đủ các UIKeyboardType
giá trị có thể được tìm thấy ở đây , hoặc:
typedef enum : NSInteger {
UIKeyboardTypeDefault,
UIKeyboardTypeASCIICapable,
UIKeyboardTypeNumbersAndPunctuation,
UIKeyboardTypeURL,
UIKeyboardTypeNumberPad,
UIKeyboardTypePhonePad,
UIKeyboardTypeNamePhonePad,
UIKeyboardTypeEmailAddress,
UIKeyboardTypeDecimalPad,
UIKeyboardTypeTwitter,
UIKeyboardTypeWebSearch,
UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable
} UIKeyboardType;
doozy
thành một cái gì đó dễ hiểu hơn .. hãy nhớ rằng SO là một trang web quốc tế chứ không phải là một trang web ở Bắc Mỹ