10-光标颜色、光标聚焦(登录注册模块常用)

关键知识点:如何监听一个控件内部的事件(四种)

  • 第一种:如果继承自UIControl
- (void)addTarget:(nullable id)target action:(SEL)action forControlEvents:(UIControlEvents)controlEvents;
  • 第二种:代理
  • 第三种:通知
  • 第四种:利用内部的某些机制

比如重写UITextField的becomeFirstResponderresignFirstResponder来监听UITextField的获得焦点和失去焦点事件


例子如下:

在登录注册模块一般会用到

效果图:

10-光标颜色、光标聚焦(登录注册模块常用)_第1张图片
2.png

** 需求:**

  • 一般光标颜色是蓝色,想要在聚焦时,光标的颜色进行改变;
  • 聚焦时弹出键盘,聚焦失效时,键盘缩回。

** 解决:**

  • 一般通过自定义UITextField来实现,以下设置都是在自定义的UITextField实现。
  • 自定义完成后,要在Xib中需要设置的UITextField写入类名。如下:
10-光标颜色、光标聚焦(登录注册模块常用)_第2张图片
11.png

一、修改光标颜色

方法一: 直接设置
这个需要对修改光标颜色的每一个UITextField进行设置。

10-光标颜色、光标聚焦(登录注册模块常用)_第3张图片
3.png

方法二:代码

这个需要在自定义的UITextField中设置一次即可。

@property (weak, nonatomic) IBOutlet UITextField *SecretLabel;
 self.SecretLabel.tintColor = [UIColor whiteColor];

二、光标聚焦

方法一:推荐使用,监听文字的编辑

  • addTarget
[textField addTarget:target action:@selector(editingDidBegin) forControlEvents:UIControlEventEditingDidBegin];
[textField addTarget:target action:@selector(editingDidEnd) forControlEvents:UIControlEventEditingDidEnd];

文字编辑的三种状态:editingDidBegineditingDidEndeditingChange

UIControlEventEditingDidBegin

  1. 开始编辑
  2. 获得焦点
  3. 弹出键盘

UIControlEventEditingDidEnd

  1. 结束编辑
  2. 失去焦点
  3. 退下键盘

代码如下:

static NSString *const ZSPlaceholderColorKey = @"placeholderLabel.textColor";

@implementation ZBSLoginRegisterTextField

-(void)awakeFromNib
{
    // 光标的颜色
    self.tintColor = [UIColor whiteColor];

    // 设置输入的文字颜色
    self.textColor = [UIColor whiteColor];
    
    // 默认占位文字为灰色
    [self setValue:[UIColor grayColor] forKeyPath:ZSPlaceholderColorKey];
    
    [self addTarget:self action:@selector(editingDidBegin) forControlEvents:UIControlEventEditingDidBegin];
    
    [self addTarget:self action:@selector(editingDidEnd) forControlEvents:UIControlEventEditingDidEnd];

}
/**
 *  开始编辑
 */
- (void)editingDidBegin
{
    [self setValue:[UIColor whiteColor] forKeyPath:ZSPlaceholderColorKey];
}

/**
 *  结束编辑
 */
- (void)editingDidEnd
{
    XMGLogFunc
    [self setValue:[UIColor grayColor] forKeyPath:ZSPlaceholderColorKey];
}

拓展:

// 监听文字改变
    [self addTarget:self action:@selector(editingChange) forControlEvents:UIControlEventEditingChanged];

方法二、代理

  • 遵循协议
  • 设置代理:self.delegate = self;
  • 实现代理方法

#pragma mark - 
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
    [self setValue:[UIColor whiteColor] forKeyPath:XMGPlaceholderColorKey];
}

- (void)textFieldDidEndEditing:(UITextField *)textField
{
    [self setValue:[UIColor grayColor] forKeyPath:XMGPlaceholderColorKey];
}

方法三、通知

一定要记得移除监听器

 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(beginEditing) name:UITextFieldTextDidBeginEditingNotification object:self];
 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(endEditing) name:UITextFieldTextDidEndEditingNotification object:self];

/**
 * 移除监听器
 */
- (void)dealloc
{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

- (void)beginEditing
{
    [self setValue:[UIColor whiteColor] forKeyPath:XMGPlaceholderColorKey];
}

- (void)endEditing
{
    [self setValue:[UIColor grayColor] forKeyPath:XMGPlaceholderColorKey];
}

方法四:基于对UITextField非常熟悉,利用内部的某些机制(成为第一响应者)


/**
 * 文本框聚焦时调用(弹出当前文本框对应的键盘时调用)
 */
- (BOOL)becomeFirstResponder
{
    self.placeholderColor = XMGPlaceholderFocusColor;
    return [super becomeFirstResponder];
}

/**
 * 文本框失去焦点时调用(隐藏当前文本框对应的键盘时调用)
 */
- (BOOL)resignFirstResponder
{
    self.placeholderColor = XMGPlaceholderDefaultColor;
    return [super resignFirstResponder];
}

你可能感兴趣的:(10-光标颜色、光标聚焦(登录注册模块常用))