UITextField

SH.png

基础创建

// 创建组件
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(10, 200, 330, 80)];
// 添加视图
[self.view addSubview: textField];
// 外框类型
[textField setBorderStyle:UITextBorderStyleRoundedRect];
// 占位符
textField.placeholder = @"password";
// 光标颜色
textField.tintColor = [UIColor redColor];
// 安全显示
// textField.secureTextEntry = YES;
// 自动纠正
textField.autocorrectionType = UITextAutocorrectionTypeNo;
// 字体大小
textField.font = [UIFont systemFontOfSize:72];
// 编辑时显示删除按钮
textField.clearButtonMode = UITextFieldViewModeWhileEditing;
// 键盘显示类型
textField.keyboardType = UIKeyboardTypeDefault;
// 键盘返回类型
textField.returnKeyType = UIReturnKeyDone;
// 键盘外观
textField.keyboardAppearance = UIKeyboardAppearanceAlert;
// 设置居中输入
textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
// 自适应高度(自己设置的高度无效)
textField.autoresizingMask = UIViewAutoresizingFlexibleHeight;
// 左/右视图,唯一有效的就是宽度
textField.leftView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 50, 100)];
// 显示模式
textField.leftViewMode = UITextFieldViewModeAlways;
// 设置代理
textField.delegate = self;
// 设置弹出视图,不弹出键盘,仅高度有效
// textField.inputView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 50, 100)];
// 当改变字体大小适应宽
textField.adjustsFontSizeToFitWidth = YES;
// 适应宽度时支持的最小字号
textField.minimumFontSize = 5;
// 再次编辑时是否清空
textField.clearsOnBeginEditing = NO;
// 貌似点击回去再次编辑时不清楚,但是只要一输入内容就会清除之前的
textField.clearsOnInsertion = NO;
// 设置return样式,除了默认外,其他的按钮都是蓝颜色背景
textField.returnKeyType = UIReturnKeyGo;

改变占位字符属性

  • 方式一: 富文本
NSMutableAttributedString *pswd = [[NSMutableAttributedString alloc] initWithString:@"pswd"];    
[pswd setAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]} range:NSMakeRange(0, 2)];    
[pswd setAttributes:@{NSForegroundColorAttributeName : [UIColor yellowColor], NSFontAttributeName : [UIFont systemFontOfSize:30]} range:NSMakeRange(2, 2)];    
textField.attributedPlaceholder = pswd;
  • 方式二: 重绘
 - (void)drawPlaceholderInRect:(CGRect)rect {
    NSMutableDictionary *attributes = [NSMutableDictionary dictionary];
    attributes[NSForegroundColorAttributeName] = [UIColor lightGrayColor];
    attributes[NSFontAttributeName] = [UIFont systemFontOfSize:12];
    [[self placeholder] drawInRect:rect withAttributes:attributes];
}
  • 方式三: KVC
// 设置占位文字后
textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];
[self setValue:[UIFont systemFontOfSize:12] forKeyPath:@"_placeholderLabel.font"];

继承UItextField

DDYTextField.h

#import <UIKit/UIKit.h>

@interface DDYTextField : UITextField

@end

DDYTextField.m

#import "DDYTextField.h"

@implementation DDYTextField

#pragma mark 控制清除按钮的位置
- (CGRect)clearButtonRectForBounds:(CGRect)bounds {
    return CGRectMake(bounds.origin.x+ bounds.size.width-50, bounds.origin.y+ bounds.size.height-20,16,16);
}

#pragma mark 控制placeHolder的位置,左右缩20
- (CGRect)placeholderRectForBounds:(CGRect)bounds {
    //return CGRectInset(bounds, 10, 0);
    CGRect inset = CGRectMake(bounds.origin.x+10, bounds.origin.y+16, bounds.size.width -10, bounds.size.height);
    return inset;
}
#pragma mark 控制显示文本的位置
- (CGRect)textRectForBounds:(CGRect)bounds {
    //return CGRectInset(bounds, 50, 0);
    CGRect inset = CGRectMake(bounds.origin.x+10, bounds.origin.y, bounds.size.width -10, bounds.size.height);
    return inset;
}
#pragma mark 控制编辑文本的位置
- (CGRect)editingRectForBounds:(CGRect)bounds {
    //return CGRectInset( bounds, 10 , 0 );
    CGRect inset = CGRectMake(bounds.origin.x+10, bounds.origin.y, bounds.size.width -10, bounds.size.height);
    return inset;
}

#pragma mark 控制placeHolder的颜色、字体
- (void)drawPlaceholderInRect:(CGRect)rect {
    NSMutableDictionary *attributes = [NSMutableDictionary dictionary];
    attributes[NSForegroundColorAttributeName] = [UIColor lightGrayColor];
    attributes[NSFontAttributeName] = [UIFont systemFontOfSize:12];
    [[self placeholder] drawInRect:rect withAttributes:attributes];
}
#pragma mark 禁止复制,粘贴,全选菜单
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {  
        // 禁用粘贴功能  
        if (action == @selector(paste:))  
            return NO;  
        // 禁用选择功能  
        if (action == @selector(select:))     
            return NO;     
        // 禁用全选功能  
        if (action == @selector(selectAll:))     
            return NO;  
        return [super canPerformAction:action withSender:sender];  
    } 
@end

禁止输入框所有功能按钮

- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {  
        UIMenuController *menuController = [UIMenuController sharedMenuController];  
        if (menuController) {  
            [UIMenuController sharedMenuController].menuVisible = NO;  
        }  
    return NO;  
} 

文本框变化监听

1 代理方式

 // <UITextFieldDelegate>

- (void)viewDidLoad {
    textField.delegate = self;    //添加代理
}
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
    // 如果NO就不会显示
    return true;    
}

2 通知方式

- (void) viewDidLoad {
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textChange) name:UITextFieldTextDidChangeNotification object:nil];
    //addObserver:self 监听者对象
    //name 监听的改变对象的方法
    //object 监听的对象 nil 全部监听
}
- (void)textChange {
    NSLog(@"%@", textField.text);
}
/** 记得移除 */
- (void)dealloc {
    [[NSNotificationCenter defaultCenter] removeObserver:self]; //移除监听
}

动态添加执行方法

- (void) viewDidLoad {
    [_userName addTarget:self action:@selector(textChange) forControlEvents:UIControlEventEditingChanged];
    //forControlEvents 触发事件
}
- (void)textChange {
    NSLog(@"%@", _userName.text);
}

纯数字问题

当要求输入手机号或者数字密码时,要禁止键盘输入其他字符,甚至防止粘贴方式输入特殊字符
网上很多这种方式

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
    return [self isPureInt:string];
}

- (BOOL)isPureInt:(NSString*)string {
    NSScanner* scan = [NSScanner scannerWithString:string];
    int val;
    return[scan scanInt:&val] && [scan isAtEnd];
}

不足显而易见,当返回NO,就没法编辑、删除。
我的一种实现方式

_phoneTextField.keyboardType = UIKeyboardTypeNumberPad;
    [_phoneTextField addTarget:self action:@selector(textFieldTextChange) forControlEvents:UIControlEventEditingChanged];

- (void)textFieldTextChange {
    if (_phoneTextField.text.length>10) {
        _phoneTextField.text = [_phoneTextField.text substringToIndex:11];
    } else if (_phoneTextField.text.length > 0) {
    _phoneTextField.text = [[_phoneTextField.text componentsSeparatedByCharactersInSet:[[NSCharacterSet characterSetWithCharactersInString:@"0123456789"] invertedSet]] componentsJoinedByString:@""];
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容