进入本文之前建议你认真读一读我的另一篇博文:UIControl IOS控件编程 这样会起到事半功倍效果。
为什么要看另一篇关于UIControl的文章呢?因为UITextField继承自UIControl类,很多UIControl的属性、方法、通知等完全适用于UITextField,而那些属于UIControl的东西我又不会在此赘述。(主要是减轻文章的长度,以最少的文字最通俗易懂讲明白一个知识点是我追求的目标。)
创建
- UITextField* myTextField = [[UITextField alloc]initWithFrame:CGRectMake(50, 100, 200, 50)];
纯代码创建View请参看我的另一片博文:有关View的几个基础知识点-IOS开发 (实例)
设置委托
- myTextField.delegate = self;
设置属性
UIControl属性对UITextField完全可以用,下面的都是UITextFiels扩展的属性:
- myTextField.textAlignment = UITextAlignmentLeft;
- myTextField.borderStyle = UITextBorderStyleBezel;
- myTextField.placeholder = @"请在此输入账号";
- myTextField.clearsOnBeginEditing = YES;
- myTextField.adjustsFontSizeToFitWidth = YES;
-
- myTextField.clearButtonMode = UITextFieldViewModeUnlessEditing;
-
-
-
-
这些属性令你可以将UIView的派生类附着于为本字段的左方或右方。人们通常会将UIButton对象,比如放大镜或者书签按钮附着与文本字段上。每个附着视图都会有一个相应的模式,设置clearButtonmode属性的那些值,同样可以设置这个模式。
显示
- [self.view addSubview:myTextField];
重写绘制行为
除了UITextField对象的风格选项,你还可以定制化UITextField对象,为他添加许多不同的重写方法,来改变文本字段的显示行为。这些方法都会返回一个CGRect结构,制定了文本字段每个部件的边界范围。如果你创见了一个自定义的UITextField类,你可以重写这些方法,这样就可以改变一个或多个边界。一定不要直接调用 fan广发;它们都是被iPhone运行库调用的回调函数下面举个例子:
- - (CGRect)clearButtonForBounds:(CGRect)bounds{
- return CGRectMake(bounds.origin.x +bounds.size.width-50,
- bounds.origin.y+bounds.size.height-20, 16, 16);
- }
下列方法在创建一个UITextField的子类时可以重写:
borderRectForBounds
指定矩形边界
textRectForBounds
指定显示文本的边界
placeholderRectForBounds
指定站位文本的边界
editingRectForBounds
指定编辑中文本的边界
clearButtonRectForBounds
指定显示清除按钮的边界
leftViewRectForBounds
指定显示左附着视图的边界
rightViewRectForBounds
指定显示右附着视图的边界
委托方法
- - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
-
- return YES;
- }
- - (void)textFieldDidBeginEditing:(UITextField *)textField{
-
- }
- - (BOOL)textFieldShouldEndEditing:(UITextField *)textField{
-
-
-
- return NO;
- }
- - (BOOL)textField:(UITextField*)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
-
-
-
-
-
- return YES;
- }
- - (BOOL)textFieldShouldClear:(UITextField *)textField{
-
-
- return YES;
- }
- -(BOOL)textFieldShouldReturn:(UITextField *)textField{
-
-
- [textField resignFirstResponder];
- return YES;
- }
通知
UITextField派生自UIControl,所以UIControl类中的通知系统在文本字段中也可以使用。除了UIControl类的标准事件,你还可以使用下列UITextField类特有的事件
UITextFieldTextDidBeginEditingNotification
UITextFieldTextDidChangeNotification
UITextFieldTextDidEndEditingNotification
当文本字段退出编辑模式时触发。通知的object属性存储了最终文本。
因为文本字段要使用键盘输入文字,所以下面这些事件发生时,也会发送动作通知
UIKeyboardWillShowNotification
键盘显示之前发送
UIKeyboardDidShowNotification
键盘显示之后发送
UIKeyboardWillHideNotification
键盘隐藏之前发送
UIKeyboardDidHideNotification
键盘隐藏之后发送
打开键盘卷动文本字段
默认情况下打开键盘会遮住下面的view,带来一点点困扰,不过这不是什么大问题,我们使用点小小的手段就可以解决。
首先我们要知道键盘的高度是固定不变的,不过在IOS 5.0 以后键盘的高度貌似不是216了,不过不要紧,我们调整调整就是了:
|
iPhone |
ipad |
竖屏(portrait) |
216 |
264 |
横屏(landScape) |
140 |
352 |
我们采取的方法就是在textField(有可能是其他控件)接收到弹出键盘事件时把self.view整体上移216px了(我们就以iPhone竖屏为例了)。
有关View的frame,origin,size之类的知识点不懂的请参看我的另一篇博文: 有关View的几个基础知识点-IOS开发 (实例)
首先我们要设置textField的代理,我们就设为当前控制器了。
然后我们在当前控制器实现下面两个委托方法:
- - (void)textFieldDidBeginEditing:(UITextField *)textField
- {
- NSTimeInterval animationDuration = 0.30f;
- CGRect frame = self.view.frame;
- frame.origin.y -=216;
- frame.size.height +=216;
- self.view.frame = frame;
- [UIView beginAnimations:@"ResizeView" context:nil];
- [UIView setAnimationDuration:animationDuration];
- self.view.frame = frame;
- [UIView commitAnimations];
- }
- - (BOOL)textFieldShouldReturn:(UITextField *)textField
- {
- NSTimeInterval animationDuration = 0.30f;
- CGRect frame = self.view.frame;
- frame.origin.y +=216;
- frame.size. height -=216;
- self.view.frame = frame;
-
- [UIView beginAnimations:@"ResizeView" context:nil];
- [UIView setAnimationDuration:animationDuration];
- self.view.frame = frame;
- [UIView commitAnimations];
- [textField resignFirstResponder];
- }
实例:
- - (void)viewDidLoad
- {
- [super viewDidLoad];
-
-
- UITextField *myTextField = [[UITextField alloc]initWithFrame:CGRectMake(50, 300, 200, 60)];
-
- myTextField.delegate = self;
-
-
- myTextField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
- myTextField.textAlignment = UITextAlignmentLeft;
- myTextField.borderStyle = UITextBorderStyleBezel;
- myTextField.placeholder = @"请在此输入账号";
- myTextField.clearsOnBeginEditing = YES;
- myTextField.adjustsFontSizeToFitWidth = YES;
-
- myTextField.clearButtonMode = UITextFieldViewModeUnlessEditing;
-
- [self.view addSubview:myTextField];
- myTextField = nil;
-
- }
-
-
- - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
-
- return YES;
- }
- - (void)textFieldDidBeginEditing:(UITextField *)textField{
-
-
-
- CGRect frame = self.view.frame;
- frame.origin.y -=120;
- frame.size.height +=120;
- self.view.frame = frame;
- }
- - (BOOL)textFieldShouldEndEditing:(UITextField *)textField{
-
-
-
- NSLog(@"here is code: %@",textField.text);
- return YES;
- }
- - (BOOL)textField:(UITextField*)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
-
-
-
-
-
-
- return YES;
- }
- - (BOOL)textFieldShouldClear:(UITextField *)textField{
-
-
- return YES;
- }
- -(BOOL)textFieldShouldReturn:(UITextField *)textField{
-
- CGRect frame = self.view.frame;
- frame.origin.y +=120;
- frame.size.height -=120;
- self.view.frame = frame;
- NSLog(@"textfield:%@", textField);
-
-
- [textField resignFirstResponder];
- return YES;
- }
来源: http://blog.csdn.net/iukey/article/details/7301150
UITextField 的密文设定方式
通常在输入密码或是制作一些特殊效果时,UITextField 会使用密文来保护所输入的文字,下列我们将使用两种不同的方式来示范如何设定 UITextField 的密文保护。
一个最简单又直接的方式,当介面上已经拉出一个 UITextField 时,我们可以透过 Interface Builder 直接设定,点选所要的 UITextField 点选属性标籤页 Attributes inspector,并找到 Secure 的 CheckBox 打勾即可,如下图。
另一种方式,就是从程式里面直接做设定,常用在动态产生 UITextField 时,其程式码如下。
- passwordTextField.secureTextEntry = YES;
来源:http://furnacedigital.blogspot.com/2011/04/uitextfield.html