美文网首页
安全键盘

安全键盘

作者: 呦蝴蝶 | 来源:发表于2019-05-21 11:44 被阅读0次

产生原因:

1)避免第三方读取系统键盘缓存

2)防止屏幕录制(自己定制的键盘按键不加按下效果)

思路:

1)首先捕获系统键盘的弹出,收回通知

2)创建一个更高级别的窗口挡住系统键盘

3)需要抛出一个idtextInput的弱引用切换焦点

键盘安全模型:

@interface WQSafeKeyboard : UIWindow@property (nonatomic, weak, setter = focusOnTextFiled:) UITextField *textFiled;+ (WQSafeKeyboard *)deploySafeKeyboard;@end@interface WQSafeKeyboard()@property (nonatomic, strong)WQInterKeyboard *keyboard;@end@implementation WQSafeKeyboard+ (WQSafeKeyboard *)deploySafeKeyboard{WQSafeKeyboard *kb = [[WQSafeKeyboard alloc]init];[kb addObserver];return kb;}- (instancetype)init{if (self = [super init]) {self.windowLevel = UIWindowLevelAlert;self.frame = CGRectZero;self.rootViewController = self.keyboard;}return self;}- (void)dealloc{[[NSNotificationCenter defaultCenter] removeObserver:self];}- (WQInterKeyboard *)keyboard{if (!_keyboard) {_keyboard = [[WQInterKeyboard alloc]init];}return _keyboard;}- (void)focusOnTextFiled:(UITextField *)textFiled{_textFiled = textFiled;self.keyboard.textField = _textFiled;}- (void)addObserver{[[NSNotificationCenter defaultCenter]addObserver:selfselector:@selector(keyboardWillShow:)name:UIKeyboardWillShowNotificationobject:nil];[[NSNotificationCenter defaultCenter]addObserver:selfselector:@selector(keyboardWillHide:)name:UIKeyboardWillHideNotificationobject:nil];}- (void)keyboardWillShow:(NSNotification *)notification{if (![self.textFiled isFirstResponder]) {return;}[self keyboardAnimationWithNotification:notification];}- (void)keyboardWillHide:(NSNotification *)notification{if (![self.textFiled isFirstResponder]) {return;}[self keyboardAnimationWithNotification:notification];}- (void)keyboardAnimationWithNotification:(NSNotification *)notification{[self makeKeyAndVisible];NSDictionary *userInfo = [notification userInfo];CGRect kbFrame_end,kbFrame_begin;NSTimeInterval animationDuration;UIViewAnimationCurve animationCurve;[userInfo[UIKeyboardFrameEndUserInfoKey] getValue:&kbFrame_end];[userInfo[UIKeyboardFrameBeginUserInfoKey] getValue:&kbFrame_begin];[userInfo[UIKeyboardAnimationCurveUserInfoKey] getValue:&animationCurve];[userInfo[UIKeyboardAnimationDurationUserInfoKey] getValue:&animationDuration];self.frame = [self resizeFrameToAdjust:kbFrame_begin];[UIView animateWithDuration:animationDurationdelay:0options:(animationCurve<<16)animations:^{self.frame = [self resizeFrameToAdjust:kbFrame_end];}completion:^(BOOL finished) {}];if ([notification.name isEqualToString:UIKeyboardWillHideNotification]) {[self resignKeyWindow];}}- (CGRect)resizeFrameToAdjust:(CGRect)frame{if ([[UIApplication sharedApplication] isStatusBarHidden] )return frame;if (SYSTEM_VERSION_LESS_THAN(@"7.0")) {frame = CGRectMake(frame.origin.x,frame.origin.y - STATUSBAR_HEIGHT,frame.size.width,frame.size.height);}return frame;}@end

相关文章

  • 安全键盘

    产生原因: 1)避免第三方读取系统键盘缓存 2)防止屏幕录制(自己定制的键盘按键不加按下效果) 思路: 1)首先捕...

  • 键盘缓存与安全键盘

    大部分中文应用弹出的默认键盘是简体中文输入法键盘,在输入用户名和密码的时候,如果使用简体中文输入法键盘,输入英文字...

  • APP原型图的键盘分为6种

    最近参加一场交互评审会,会议上,我提出:APP键盘分为6种,具体为: 1. 安全登录密码键盘2. 安全取款密码键盘...

  • iOS安全键盘

    原文链接:https://blog.csdn.net/laodeng0512/article/details/75...

  • Flutter 安全键盘

    在 Flutter 中目前官方没有提供快速自定义键盘的解决方案。但在项目中以及 ICP 测评需要用到安全键盘,比如...

  • gitlab_readme

    图形验证码组件 安全键盘组件

  • 安全虚拟键盘 - 049

    Windows安全虚拟键盘 Windows可以输入密码和其他机密信息,以防止被称为键盘记录器的恶意程序攻击。安全...

  • Android 自定组件(安全键盘)

    常见的安全键盘,随机排列数字,点击状态的回调。

  • 随机布局的数字键盘

    概述:随机布局的数字键盘 使用招行密码支付时,看到有安全键盘,简单实现随机数字布局的键盘。 关键字: AutoLa...

  • 仿系统键盘点击后弹出对应效果

    对于IM应用,自定义Emoji键盘不可或缺;对于银行证券类应用,自定义数字键盘或者字母键盘有助于用户安全。如何实现...

网友评论

      本文标题:安全键盘

      本文链接:https://www.haomeiwen.com/subject/wrbdzqtx.html