文本经常需要和键盘打交道,现在记录一下初步的键盘相关的知识点。
键盘出现和消失促发两个消息。
UIKeyboardWillShowNotification (出现通知)
UIKeyboardWillHideNotification (隐藏通知)
NSNotificationCenter 监听两个消息即可捕捉到键盘弹出和隐藏的两个消息。
键盘类型
键盘类型系统提供了几种类型,文本里面只需要设置一下相应的的类型就可以呈现出对应的键盘种类
1 | textField.keyboardType = UIKeyboardTypeNumberPad;(数字类型)理财方面的产品里面可以见到这样的设置。 |
类型枚举
1 | typedef NS_ENUM(NSInteger, UIKeyboardType) { |
1 | [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardDisappear:) name:UIKeyboardWillHideNotification object:nil]; |