几行代码搞定UITextField弹起键盘遮挡视图问题

先看效果图


几行代码搞定UITextField弹起键盘遮挡视图问题_第1张图片
先看效果图

问题描述

在开发中经常会遇到点击输入框激活键盘的时候,弹出的键盘导致输入框被遮挡的现象。常用的解决方案有两种:
1.键盘弹出的时候,将整个视图上移。
2.键盘弹出的时候,悬浮输入框到适当位置。

第一种方案比较简单,常用的实现方式有三种:

  • 给UITextField注册监听事件:UIControlEventEditingDidBeginUIControlEventEditingDidEnd
  • 协议+代理:通过UITextField的代理方法来实现
  • 用通知来实现

几种方式分析

  • 方法1:如果给UITextField注册监听事件,监听正在编辑和编辑完毕,需要自己写一个正在编辑和编辑完毕时候视图位置改变的方法,如果有多个UITextField,那么每个都要添加监听事件,很麻烦。

    UITextField * usernameTextField = [[UITextField alloc]initWithFrame:CGRectMake(30, 30, 100, 30)];
//    UITextField * passwordTextField = [[UITextField alloc]initWithFrame:CGRectMake(30, 160, 100, 30)];
    
    // 添加监听事件
    // 开始输入
    [usernameTextField addTarget:self action:@selector(textFieldEditBegin) forControlEvents:UIControlEventEditingDidBegin];
    // 输入结束
    [usernameTextField addTarget:self action:@selector(textFieldEditEnd) forControlEvents:UIControlEventEditingDidEnd];
    
    [self.view addSubview:usernameTextField];
  • 方法二:通过UITextField的代理方法进行设置,代理方法有:
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField; // 文本框是否可以编辑

- (void)textFieldDidBeginEditing:(UITextField *)textField;   // 开始编辑时调用

- (BOOL)textFieldShouldEndEditing:(UITextField *)textField;   // 文本是否结束编辑

- (void)textFieldDidEndEditing:(UITextField *)textField;     // 结束编辑时调用

- (BOOL)textFieldShouldClear:(UITextField *)textField;        // 是否可以清楚文本框的内容

- (BOOL)textFieldShouldReturn:(UITextField *)textField;      // 是否可以return
  • 在代理方法textFieldDidBeginEditingtextFieldDidEndEditing里面实现视图的偏移

  • 方法3:用UITextField的通知UIKeyboardWillChangeFrameNotification来实现,只需要在监听通知,设置视图偏移的动画

所以采用通知的形式来实现

完整代码(重要)

#import "ViewController.h"
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UITextField *usernameTextField;
@property (weak, nonatomic) IBOutlet UITextField *passwordTextField;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // 监听通知
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil]; 
}

#pragma mark 键盘处理
- (void)keyboardWillChangeFrame:(NSNotification *)note{
    // 取出键盘最终的frame
    CGRect rect = [note.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
    // 取出键盘弹出需要花费的时间
    double duration = [note.userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    // 修改transform
    [UIView animateWithDuration:duration animations:^{
        CGFloat ty = [UIScreen mainScreen].bounds.size.height - rect.origin.y;
        self.view.transform = CGAffineTransformMakeTranslation(0, - ty);
    }];
}
/**
 * 点击屏幕的时候
 */
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    [self.view endEditing:YES];
    
}
-(void)dealloc{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

补充 - 关于通知

通知中心(NSNotificationCenter)

  • 每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象之间的消息通信。
  • 任何一个对象都可以向通知中心发布通知(NSNotification),描述自己在在做什么。
  • 其他感兴趣的对象(Observer)可以申请在某个特定通知发布时(或在某个特定的对象发布通知的时候)收到这个通知。
    几行代码搞定UITextField弹起键盘遮挡视图问题_第2张图片
    NSNotificationCenter

通知(NSNotificationCenter)

  • 通知包含的属性:
    • 通知名称;
    • 通知发布者;
    • /额外信息(通知发布者传递给通知接收着的信息内容).
    - (NSString *)name;  // 通知名称
    - (id)object;   // 通知发布者
    - (NSDictionary *)userInfo; //额外信息(通知发布者传递给通知接收着的信息内容)
  • 初始化通知对象的方法:
+ (instancetype)notificationWithName:(NSNotificationName)aName object:(nullable id)anObject;
+ (instancetype)notificationWithName:(NSNotificationName)aName object:(nullable id)anObject userInfo:(nullable NSDictionary *)aUserInfo;

- (instancetype)init

发布通知

- (void)postNotification:(NSNotification *)notification;

发布一个notification通知,可在notification对象中设置通知的名称、通知发布者、额外信息等

- (void)postNotificationName:(NSNotificationName)aName object:(nullable id)anObject;

发布一个名称为aName的通知,anObject为这个通知的发布者

- (void)postNotificationName:(NSNotificationName)aName object:(nullable id)anObject userInfo:(nullable NSDictionary *)aUserInfo;

发布一个名称为aName的通知,anObject为这个通知的发布者,aUserInfo为额外信息

监听通知

  • 通知中心提供了方法来注册一个监听通知的监听器(Observer)
- (void)addObserver:(id)observer selector:(SEL)aSelector name:(nullable NSNotificationName)aName object:(nullable id)anObject;

observer:监听器
aSelector:接收通知后,回调监听器的这个放啊,并且把通知对象当参数传入
aName:通知名称。如果为nil,那么无论通知名称是什么,监听器都能收到这个通知
anObject:通知发布者。如果anObjectaName都为nil,监听器都能收到所有通知

- (id )addObserverForName:(nullable NSNotificationName)name object:(nullable id)obj queue:(nullable NSOperationQueue *)queue usingBlock:(void (^)(NSNotification *note))block ;

name:通知名称
obj:通知发布者
block:收到对应的通知时,会回调这个block
queue:决定了block在哪个操作队列中执行,如果为nil,默认在当前操作队列中同步执行。

取消注册通知监听器

通知中心不会保留(retain)监听器对象,在通知中心注册过的对象,必须在该对象释放前取消注册。否则,当相应的通知再次出现时,通知中心仍然会想该监听器发送消息。因为相应的监听器对象已经释放了,所以可能会导致应用崩溃。

  • 通知中心提供了相应的方法来取消注册注册监听器
- (void)removeObserver:(id)observer;
- (void)removeObserver:(id)observer name:(nullable NSNotificationName)aName object:(nullable id)anObject;

键盘通知

  • UIKeyboardWillShowNotification:键盘即将显示
  • UIKeyboardDidShowNotification:键盘已经显示完毕
  • UIKeyboardWillHideNotification:键盘即将隐藏
  • UIKeyboardDidHideNotification:键盘已经隐藏完毕
  • UIKeyboardWillChangeFrameNotification:键盘的位置尺寸即将发生改变
  • UIKeyboardDidChangeFrameNotification:键盘的位置尺寸已经发生改变

你可能感兴趣的:(几行代码搞定UITextField弹起键盘遮挡视图问题)