UITextField的使用和 键盘处理!!!

怎么改变uitextfield placeholder的颜色和位置?

-1、继承uitextfield,重写这个方法

- (void) drawPlaceholderInRect:(CGRect)rect {
[[UIColor blueColor] setFill];
[self.placeholder drawInRect:rect withFont:self.font lineBreakMode:UILineBreakModeTailTruncation alignment:self.textAlignment];
}

输入长度的控制 -- (这个控件的使用重点!)

有个需求 ,要求输入的密码 和 用户名的长度不超过 6位?

  • 通常我们使用的是:


    UITextField的使用和 键盘处理!!!_第1张图片
    判断长度.png
  • 但是,上面的判断是有问题的!并不能很好的判断!

  • 接下来是我要用UITextfiled 的一个代理方法处理那个问题,首先,设置代理 和 textField.delegate = self;

UITextField的使用和 键盘处理!!!_第2张图片
下面是代码.png

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
// 用当前输入框中得文本创建一个可变字符串
NSMutableString * muStr = [[NSMutableString alloc] initWithString:textField.text];
// 将当前输入的字符插入到可变字符串相应的位置
[muStr insertString:string atIndex:range.location];

    //    判断插入以后是否大于允许输入的最大长度
      return muStr.length <= 6;

    }
  • 通常我们会加逻辑判断一下:if (xxx == _xxx)
UITextField的使用和 键盘处理!!!_第3张图片
逻辑判断一下.png

下面是介绍 UITextField 的基本用法:

1、属性的设置

    <1>字体                        --  font
    <2>文本颜色                     --  color
    <3>设置密码输入键盘               -- secureTextEntry
    <4>设置键盘类型                  -- keyboardType
    <5>设置清除模式                  --  clearButtonMode
    <6>设置空白提示                  -- placeholder
    <7>设置是否自动大写               --  autocapitalizationType
    <8>是否自动显示修正后的单词        --autocorrectionType
 <9>设置文本对齐方式          --  textAlignment
    <10>设置背景图片                  --   background
    <11>左侧提示图片                  --  leftView
  • 文本颜色

文本颜色.png
        _nameTextFile.textColor = [UIColor orangeColor];// 文本颜色
  • 设置密码输入键盘、键盘类型

    // 密码类型
    _nameTextFile.secureTextEntry = YES;// 密码类型
    // 键盘模式
    _nameTextFile.keyboardType = UIKeyboardTypeNumberPad; //键盘模式
    // 设置清除模式
    _nameTextFile.clearButtonMode = UITextFieldViewModeAlways;// 设置清除模式
UITextField的使用和 键盘处理!!!_第4张图片
1.png
// 设置空白提示
    _nameTextFile.placeholder = @"请输入密码";
  • 设置空白提示

设置空白提示.png
  • 去掉自动大小写
       // 去掉自动大小写
      _nameTextFile.autocapitalizationType = UITextAutocapitalizationTypeNone;
    
小写.png
  • 关闭拼写自动提示

      // 关闭拼写自动提示
      _nameTextFile.autocorrectionType = UITextAutocorrectionTypeNo;
    
  • 设置文本对齐方式

        // 设置文本对齐方式
        _nameTextFile.textAlignment = NSTextAlignmentRight;
    
对齐方式.png
  • 设置背景图片

  • 注意:如果设置 borderStyle 为:UITextBorderStyleRoundedRect,背景图片是显示不出来的!其它类型都可以设置图片!
图片丑了点.png
  • 导航栏左侧提示图片 ---(leftView 和 leftViewMode 是同时使用的!)

     UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 30, 30)];
      imgView.image = [UIImage imageNamed:@"logo64X64"];
    // xxxModel显示模式 和 xxxView 一齐使用
       _nameTextFile.leftView = imgView;
      _nameTextFile.leftViewMode = UITextFieldViewModeAlways;// 设置模式,才能显示
    
左右两边都可以设置提示图标.png

键盘处理: --- 首先要设置 delegate

  • 和 _nameTextFile.delegate = self;

  • 文本框 和 键盘是同时使用的,就像leftView 和 leftViewMode 是同时使用的!

  • // 重写代理方法 -- 点击 键盘 “return”按钮退出键盘
    - (BOOL)textFieldShouldReturn:(UITextField *)textField
    {
        // 退出键盘
      [_nameTextFile resignFirstResponder];
      return YES;
    }
    
  • 方式2 --- 点击背景则回收键盘(背景图片添加手势)或 使用UIView。

UITextField的使用和 键盘处理!!!_第5张图片
点击.png
  • 点击键盘“return”按钮,自动切换到下一个输入框?

  • 要处理键盘遮盖文本宽!设置 frame 的View 往上移动!
  • 多个文本框:其实一样!执行代理方法。判断一下哪个退出,那个成为第一响应者!---- 最后,恢复View 的frame!
UITextField的使用和 键盘处理!!!_第6张图片
方法2.png
  • 用手势就跟简单了:只需在手势的构造器里,直接 退出第一响应者就OK了。

UITextField的使用和 键盘处理!!!_第7张图片
手势直接退出键盘.png

使用 NSNotificationCenter处理键盘"遮盖"输入框 和 退出?

  • 注意 name 的值!!!

    //    监听键盘显示的通知
    //    当接收到UIKeyboardWillShowNotification 通知以后就给self 发送一个ViewUp消息
    //  注意:name
      [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(viewUp) name:UIKeyboardWillShowNotification object:nil];
    
      // 通知中心 -- 注意:name 的值
      [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(viewBack) name:UIKeyboardWillHideNotification object:nil];
    
  • 通知方法 -- 处理遮盖输入框!

    // View 的frame 向上移动 80
    -(void)viewUp{
    NSLog(@"键盘出来啦");
    self.view.frame = CGRectMake(0, -80, 320, 480);
    }
    
    // 恢复 View 的frame
    -(void)viewBack{
    self.view.frame = CGRectMake(0, 0, 320, 480);
    }

你可能感兴趣的:(UITextField的使用和 键盘处理!!!)