自定义的密码键盘,配合上webView的调用,这几天有遇到这个问题。上周稍微看了下简单的数字键盘。字母键盘的话,可能在布局上稍稍繁琐了点。
而webView的控件默认就调了系统的键盘,或者是第三方的键盘。此处想了办法就是新建一个空白的view,view里有一个textField,用来弹出键盘和存储输入的文本。
在github上找到了一位同学的仿招行的密码键盘,支持全字母+字符数字、数字键盘、数字+小数点键盘三种,还是惟妙惟肖的,但是三种的切换还没有做在一起。稍稍修改了下,原地址在这里。NHKeyboardPro。
修改后效果是这样的
-
结合webView使用的方式
// 包装键盘弹出的view
@property (nonatomic, strong) SafeKBInputView *input;
// 可以是web端通过交互,调用原生的功能来实现键盘的弹出
- (IBAction)showABC:(id)sender
{
self.input = [SafeKBInputView shareKBInputViewWithTypeABC];
self.input.InputViewDelegate = self;
[self.input show];
}
#pragma mark - delegate
// 每次文本框字符修改后 触发的代理方法,
// 提供一个真实字符串、一个占位符字符串
- (void)safeKBInputView:(SafeKBInputView *)inputView DidChangeText:(NSString *)text
placeholderText:(NSString *)placeholder
TextField:(SafeTextField *)textField
{
// 此处可以调用js 让web的文本框做出实时的改变
self.lblWebpwd.text = placeholder;
self.lblWebpwdTrue.text = text;
}
-
普通的使用方式
我用了一个自定义了textField管理了一些功能,再用一个KBInputView来管理弹出。如果原生客户端直接使用的话,可以直接用keyboard。
SafeKBInputView
@property (nonatomic, strong) SafeTextField *textField;
@property (nonatomic, copy) NSMutableString *placeholderText;
@property (nonatomic, copy) NSString *trueText;
@property (nonatomic, weak) id<SafeKBInputViewDelegate> InputViewDelegate;
// 提供三个类别键盘的创建
+(SafeKBInputView *)shareKBInputViewWithTypeNum;
+(SafeKBInputView *)shareKBInputViewWithTypeNumDecimal;
+(SafeKBInputView *)shareKBInputViewWithTypeABC;
// 代理
@protocol SafeKBInputViewDelegate <NSObject>
-(void)safeKBInputView:(SafeKBInputView *)inputView DidChangeText:(NSString *)text placeholderText:(NSString *)placeholder TextField:(SafeTextField *)textField;
将web端的输入控件交互属性关闭,这样就不会弹出系统的键盘了。然后点击时让原生创建inputView,show出键盘,通过代理去调用js,实时修改控件的显示值。
具体的看代码吧,没多少东西。要是哪里有什么不对的地方,还请及时的纠正,先谢过。
https://github.com/NNope/SafeKeyboard
04/11
今天添加了一个webView调用的demo,代码都在一块,发现一个问题。就是在show键盘的时候注意要用主线程去操作,这个问题也是之前使用JavaScriptCore中说到要注意的问题。