【iOS基础】textField问题记录

UITextField控件,继承自UIControl,输入框,简单总结一下使用,和遇到的一些情况。

输入框边框风格

@property(nonatomic) UITextBorderStyle borderStyle;

取值为枚举值
typedef NS_ENUM(NSInteger, UITextBorderStyle) {
    UITextBorderStyleNone,//无
    UITextBorderStyleLine,//黑色直角粗线框,透明背景
    UITextBorderStyleBezel,//黑色直角粗线框,有阴影的感觉,透明背景
    UITextBorderStyleRoundedRect//黑色圆角细线框,白色背景
};

键盘类型

@property(nonatomic) UIKeyboardType keyboardType;

typedef NS_ENUM(NSInteger, UIKeyboardType) {
    UIKeyboardTypeDefault,                // 默认键盘类型
    UIKeyboardTypeASCIICapable,           
    UIKeyboardTypeNumbersAndPunctuation,  // 数字和标点符号键盘
    UIKeyboardTypeURL,                    // 带.com
    UIKeyboardTypeNumberPad,              // 数字键盘
    UIKeyboardTypePhonePad,               // 电话号码键盘
    UIKeyboardTypeNamePhonePad,           // A type optimized for entering a person's name or phone number.
    UIKeyboardTypeEmailAddress,           // 带@).
    UIKeyboardTypeDecimalPad NS_ENUM_AVAILABLE_IOS(4_1),   // A number pad with a decimal point.
    UIKeyboardTypeTwitter NS_ENUM_AVAILABLE_IOS(5_0),      // A type optimized for twitter text entry (easy access to @ #)
    UIKeyboardTypeWebSearch NS_ENUM_AVAILABLE_IOS(7_0),    // A default keyboard type with URL-oriented addition (shows space . prominently).
    UIKeyboardTypeASCIICapableNumberPad NS_ENUM_AVAILABLE_IOS(10_0), 

    UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable, // 已弃用

};

输入框清除按钮

@property(nonatomic) UITextFieldViewMode clearButtonMode;

这个属性用来控制什么时候显示清除按钮,默认为永不显示UITextFieldViewModeNever

typedef NS_ENUM(NSInteger, UITextFieldViewMode) {
    UITextFieldViewModeNever,//一直不显示
    UITextFieldViewModeWhileEditing,//在编辑时显示
    UITextFieldViewModeUnlessEditing,//除了编辑之外显示(编辑时不显示)
    UITextFieldViewModeAlways//一直显示
};

左右视图

左右视图可以是图片,按钮等视图,可以设置位置大小,可以添加点击事件。

    UIImageView *imageView = [[UIImageView alloc]init];
    [imageView setImage:[UIImage imageNamed:@"image"]];
    [imageView setFrame:CGRectMake(0, 0, 30, 30)];
    textField.rightView = imageView;
    textField.rightViewMode = UITextFieldViewModeAlways;

    textField.leftView = imageView;
    textField.leftViewMode = UITextFieldViewModeAlways;

rightViewMode,leftViewMode和清除按钮的显示是同一个枚举值,控制什么时候显示

文字显示起始偏移

重写UITextField方法
- (CGRect)textRectForBounds:(CGRect)bounds

//坐起偏移10个像素开始显示文字
- (CGRect)textRectForBounds:(CGRect)bounds{
    [super textRectForBounds:bounds];
    CGRect inset = CGRectMake(bounds.origin.x+10, bounds.origin.y, bounds.size.width-15, bounds.size.height);
    return inset;
}

输入编辑起始偏移

重写UITextField方法
- (CGRect)editingRectForBounds:(CGRect)bounds

//坐起偏移10个像素开始编辑输入文字
- (CGRect)editingRectForBounds:(CGRect)bounds{
    [super editingRectForBounds:bounds];
    CGRect inset = CGRectMake(bounds.origin.x+10, bounds.origin.y, bounds.size.width-15, bounds.size.height);
    return inset;
}

同理的,还有如下方法

- (CGRect)borderRectForBounds:(CGRect)bounds;
- (CGRect)placeholderRectForBounds:(CGRect)bounds;
- (CGRect)clearButtonRectForBounds:(CGRect)bounds;
- (CGRect)leftViewRectForBounds:(CGRect)bounds;
- (CGRect)rightViewRectForBounds:(CGRect)bounds;

修改占位符字体,颜色

需要使用属性,富文本的形式,修改字体颜色
@property(nullable, nonatomic,copy) NSAttributedString *attributedPlaceholder

NSMutableAttributedString *att_placeholder = [[NSMutableAttributedString alloc]initWithString:self.placeholder];
[att_placeholder addAttribute:NSForegroundColorAttributeName
                        value:placeholderColor
                        range:NSMakeRange(0, self.placeholder.length)];
[att_placeholder addAttribute:NSFontAttributeName
                        value:placeholderFont
                        range:NSMakeRange(0, self.placeholder.length)];
    textField.attributedPlaceholder = att_placeholder;

return键类型

系统键盘的return键可以根据需求改变现实,可以显示go、search、done等等

return键类型,枚举值
@property(nonatomic) UIReturnKeyType returnKeyType;

typedef NS_ENUM(NSInteger, UIReturnKeyType) {
    UIReturnKeyDefault,//默认
    UIReturnKeyGo,//Go
    UIReturnKeyGoogle,//谷歌
    UIReturnKeyJoin,//加入
    UIReturnKeyNext,//下一步
    UIReturnKeyRoute,//
    UIReturnKeySearch,//搜索
    UIReturnKeySend,//发送
    UIReturnKeyYahoo,//雅虎
    UIReturnKeyDone,//完成
    UIReturnKeyEmergencyCall,
    UIReturnKeyContinue NS_ENUM_AVAILABLE_IOS(9_0),
};

textField.returnKeyType = UIReturnKeyGo;

监听点击了return键

使用到代理里一个非常重要的方法,每次输入都会监听到,可以在这个方法里对输入的内容做一些处理。

此方法会在每次输入内容时,监听到当前输入的内容,监听的是textField输入时的状态,而不是输入后的状态。

例如,准备输入"hello",已经输入了"hell",那么在键盘上按"o"时,此方法会调用,此时textField.text的值还是为"hell",监听的输入值,即此方法的string参数,为"o"。

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string;

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
    if ([string isEqualToString:@"\n"]) {
        //did click return
        //do you want to do
        return NO;
    }
    return YES;
}

这个方法经常用来在输入密码或其他的时候,判断输入的内容是否符合规定,比如不能含有数字,不能含有符号,可以在这个方法里处理,在判断是符号时,把当前输入字符替换为空@""。具体方法在这里不再赘述。

监听输入框输入内容

UITextFieldDelegate里没有直接监听变化的方法,而是类似UIButton一样,添加事件监听输入。
[textField addTarget:self action:@selector(textFieldEditingChanged:) forControlEvents:UIControlEventEditingChanged];

- (void)textFieldEditingChanged:(UITextField *)textField{
    NSString *text = textField.text;
    NSLog(@"输入内容==%@",text);
}

密码小圆点

当输入框被用作输入密码时,可以打开这个属性。
@property(nonatomic,getter=isSecureTextEntry) BOOL secureTextEntry; // default is NO

你可能感兴趣的:(【iOS基础】textField问题记录)