OS系统键盘

iOS系统键盘

iOS系统键盘在开发中可能遇到的问题:
1、选择键盘格式,比如数字键盘、邮箱键盘等
2、获取键盘高度,弹出键盘和推出键盘的监控
3、键盘自定义
这是开发中常见的几种问题,如有其他的可私聊共同学习,那首先我先说说我在开发中遇到这几种问题的解决办法
第一种:
UITextView *textView;
textView.keyboardType=UIKeyboardTypeDefault;
//
UIKeyboardTypeDefault
在这里插入图片描述 UIKeyboardTypeASCIICapable == UIKeyboardTypeAlphabet
在这里插入图片描述
UIKeyboardTypeNumbersAndPunctuation
在这里插入图片描述

UIKeyboardTypeURL
在这里插入图片描述
UIKeyboardTypeNumberPad
在这里插入图片描述
UIKeyboardTypeDecimalPad
在这里插入图片描述
UIKeyboardTypePhonePad
在这里插入图片描述
UIKeyboardTypeNamePhonePad
在这里插入图片描述
UIKeyboardTypeEmailAddress
在这里插入图片描述
UIKeyboardTypeTwitter
在这里插入图片描述
UIKeyboardTypeWebSearch
在这里插入图片描述

键盘高度获取的监控方法
//键盘弹起
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardDidShow:) name:UIKeyboardWillShowNotification object:nil];

-(void)keyboardDidShow:(NSNotification *)notification
{
NSValue *value = [[notification userInfo] objectForKey:UIKeyboardFrameEndUserInfoKey];
int height = [value CGRectValue].size.height;
}

//键盘隐藏
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardDidHide) name:UIKeyboardWillHideNotification object:nil];

-(void)keyboardDidHide
{
[UIView animateWithDuration:0.3 animations:^{
self->_textView.frame=CGRectMake(W(15), H(65), ScreenWidth-W(30), HightNoNav-H(65)-H(100));
self->_bottomView.frame=CGRectMake(0, HightNoNav-H(100), ScreenWidth, H(100));
}];
}
/注意/ 这里有一个地方要注意哦,UIKeyboardWillShowNotification 和UIKeyboardDidShowNotification都是弹出键盘,但是前面一个更好,因为如果你需要修改view的frame的话,用后面一个有延迟,不同步的修改让界面不是很好看

键盘自定义就是自定义UITextField或者UITextView的inputView。核心代码:
-(void)btnAction
{
if(type==1)
{//自定义键盘
_textView.inputView=_defineView;
[_textView reloadInputViews];
}
else
{//默认系统键盘
_textView.inputView=nil;
[_textView reloadInputViews];
}
}

说到这里,小哥再说一个开发中遇到的问题,就是web调起来的键盘不能自定义inputView,为啥子,因为web的inputView是只读属性,所以没得选择,iOS和安卓都一样,这里如果碰到了,还是另想他法,如果您有好的处理办法,私聊我,不胜感激

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

我若为帝

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值