UITextField属性和委托使用详解

键盘事件
[UIKeyboardWillShowNotification]
[UIKeyboardDidShowNotification]
[UIKeyboardWillHideNotification]
[UIKeyboardDidHideNotification]
使用场景:
计算键盘的高度,调整UI布局
根据键盘显示隐藏执行UI的动画

1.使用方法
A.注册事件
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
B.接收事件
-(void)keyboardWillShow:(NSNotification)notification{
NSDictionary
info=[notification userInfo];
CGSize kbSize=[[infoobjectForKey:UIKeyboardFrameEndUserInfoKey]CGRectValue].size;
NSLog(@"keyboard changed, keyboard width = %f, height = %f",
kbSize.width,kbSize.height);
}
C.NSNotification需要remove
-(void)viewDidUnload{
[superviewDidUnload];
[[NSNotificationCenter defaultCenter]removeObserver:self];
}
2.属性(Attributes)
A.UITextField的text属性与userInteractionEnabled共用。
textField.text = @"密码输入框"
// 输入框默认输入文本,有时需求UITextField只可显示不可编辑的,此时起展示作用:用此属性设置需要显示的文本然后设置UITextField不可交互textField.userInteractionEnabled = NO;
textField.userInteractionEnabled = NO;

B.placeholder设置字体颜色,大小
方法一:
textField.placeholder = @"密码输入框"; // 提示文本
[textField setValue:[UIColor colorWithRed:79/255.0f green:79/255.0f blue:79/255.0f alpha:0.5f] forKeyPath:@"_placeholderLabel.textColor"];
[textField setValue:[UIFont boldSystemFontOfSize:20] forKeyPath:@"_placeholderLabel.font"];

方法二:
textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"密码输入框" attributes:@{NSForegroundColorAttributeName: [UIColor colorWithRed:79/255.0f green:79/255.0f blue:79/255.0f alpha:0.5f],NSFontAttributeName : [UIFont systemFontOfSize:20 weight:6],}];

C.边框
textField.borderStyle = UITextBorderStyleLine;
//效果如下图所示
typedef NS_ENUM(NSInteger, UITextBorderStyle) {
UITextBorderStyleNone,
UITextBorderStyleLine,
UITextBorderStyleBezel,
UITextBorderStyleRoundedRect
};


783355-bf8c784195d0ee90.png

D.font属性
textField.font = [UIFont systemFontOfSize:14.0f];
textField.textColor = [UIColor redColor];
根据输入文字动态调整字体大小,需要设置一个最小字体大小
textField.adjustsFontSizeToFitWidth = YES;
textField.minimumFontSize = 10.0;//设置最小字体

E.设置输入内容的对其方式
textField.textAlignment = NSTextAlignmentLeft;
NSTextAlignmentLeft = 0, // Visually left aligned
NSTextAlignmentCenter = 1, // Visually centered
NSTextAlignmentRight = 2, // Visually right aligned
NSTextAlignmentRight = 1, // Visually right aligned
NSTextAlignmentCenter = 2, // Visually centered
NSTextAlignmentJustified = 3, // Fully-justified. The last line in a paragraph is natural-aligned.
NSTextAlignmentNatural = 4, // Indicates the default alignment for script

[textField setContentVerticalAlignment:UIControlContentVerticalAlignmentCenter];
[textField setContentHorizontalAlignment:UIControlContentHorizontalAlignmentRight];

UIControlContentVerticalAlignmentCenter = 0,
UIControlContentVerticalAlignmentTop = 1,
UIControlContentVerticalAlignmentBottom = 2,
UIControlContentVerticalAlignmentFill = 3,

UIControlContentHorizontalAlignmentCenter = 0,
UIControlContentHorizontalAlignmentLeft = 1,
UIControlContentHorizontalAlignmentRight = 2,
UIControlContentHorizontalAlignmentFill = 3,

F.与键盘相关的属性
textField.keyboardType = UIKeyboardTypeNumberPad; //设置键盘的样式
typedef enum {
UIKeyboardTypeDefault, 默认键盘,支持所有字符
UIKeyboardTypeASCIICapable, 支持ASCII的默认键盘
UIKeyboardTypeNumbersAndPunctuation, 标准电话键盘,支持+*#字符
UIKeyboardTypeURL, URL键盘,支持.com按钮 只支持URL字符
UIKeyboardTypeNumberPad, 数字键盘
UIKeyboardTypePhonePad, 电话键盘
UIKeyboardTypeNamePhonePad, 电话键盘,也支持输入人名
UIKeyboardTypeEmailAddress, 用于输入电子 邮件地址的键盘
UIKeyboardTypeDecimalPad, 数字键盘 有数字和小数点
UIKeyboardTypeTwitter, 优化的键盘,方便输入@、#字符
UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable,
} UIKeyboardType;

textField.autocapitalizationType = UITextAutocapitalizationTypeNone;  //首字母是否自动大写
typedef enum {
    UITextAutocapitalizationTypeNone, 不自动大写
    UITextAutocapitalizationTypeWords,  单词首字母大写
   UITextAutocapitalizationTypeSentences,  句子的首字母大写
   UITextAutocapitalizationTypeAllCharacters, 所有字母都大写
} UITextAutocapitalizationType;



textField.keyboardAppearance=UIKeyboardAppearanceDefault; //键盘外观
typedef enum {
   UIKeyboardAppearanceDefault, 默认外观,浅灰色
    UIKeyboardAppearanceAlert,     深灰 石墨色
} UIReturnKeyType;


textField.returnKeyType =UIReturnKeyDone;   //return键变成什么键
typedef enum {
   UIReturnKeyDefault, 默认 灰色按钮,标有Return
    UIReturnKeyGo,      标有Go的蓝色按钮
   UIReturnKeyGoogle, 标有Google的蓝色按钮,用语搜索
   UIReturnKeyJoin, 标有Join的蓝色按钮
   UIReturnKeyNext, 标有Next的蓝色按钮
   UIReturnKeyRoute, 标有Route的蓝色按钮
   UIReturnKeySearch, 标有Search的蓝色按钮
   UIReturnKeySend, 标有Send的蓝色按钮
   UIReturnKeyYahoo, 标有Yahoo的蓝色按钮
   UIReturnKeyYahoo, 标有Yahoo的蓝色按钮
    UIReturnKeyEmergencyCall, 紧急呼叫按钮
} UIReturnKeyType;

G.其他相关属性
以下几个属性通常不用,通常为自定义控件先设置一个UIView UIView上面再放UIImageview 和 UITextField,设置UIView的boder属性以满足要求。
leftView
Property
leftViewMode
Property
rightView
Property
rightViewMode
Property

清空输入框,常见于密码输入错入重新输入时会清空输入框。
textField.clearButtonMode = UITextFieldViewModeWhileEditing;// sets when the clear button shows up编辑的时候清空输入框
clearsOnInsertion// whether inserting text replaces the previous contents.插入的时候清空输入框
typedef NS_ENUM(NSInteger, UITextFieldViewMode) {
UITextFieldViewModeNever,从不出现
UITextFieldViewModeWhileEditing,编辑时出现
UITextFieldViewModeUnlessEditing,除了编辑外都出现
UITextFieldViewModeAlways 一直出现
};

textField.autocorrectionType = UITextAutocorrectionTypeNo;  //是否自动纠错
typedef enum {
     UITextAutocorrectionTypeDefault, 默认
     UITextAutocorrectionTypeNo,   不自动纠错
     UITextAutocorrectionTypeYes,  自动纠错
}  UITextAutocorrectionType;
secureTextEntry  启用/禁用 UITextField对象的安全输入功能。如果设置成YES则类似于密码框内  容将显示为圆点。
autocorrectionType  启用/禁用 UITextFieldUI想的拼写建议功能,根据用户输入错误的单词提供 修改建议
autocapitalizationType  设置 UITextField的自动大写功能,
none:关闭大写功能
words: 单词
sentences: 句子
allcharacters:所有字母
四种类型
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,686评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,668评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,160评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,736评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,847评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,043评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,129评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,872评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,318评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,645评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,777评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,861评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,589评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,687评论 2 351

推荐阅读更多精彩内容