码迷,mamicode.com
首页 > 其他好文 > 详细

Snail—UI学习之UITextField

时间:2015-07-23 21:54:30      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

简单看一下UITextField的属性

- (void)createTextField{
    
    UITextField * textField = [[UITextField alloc] initWithFrame:CGRectMake(40, 40, 240, 40)];
    //设置UITextField的边框风格,否则看不见textField 盲点的话可以点到它
    /*
     UITextBorderStyleRoundedRect 圆角
     UITextBorderStyleBezel 上、左有边框
     UITextBorderStyleLine  边框就是一个矩形框 背景还是父视图的背景色
     UITextBorderStyleNone  默认的没有边框
     */
    textField.borderStyle = UITextBorderStyleRoundedRect;
    //设置占位符 也可以叫提示语句
    textField.placeholder = @"请输入:";
    //textfield 最后面的一个删除按钮显示模式
    /*
     UITextFieldViewModeAlways 开始没有 输入后就一直显示
     UITextFieldViewModeNever  什么时候也不会显示
     UITextFieldViewModeUnlessEditing
     UITextFieldViewModeWhileEditing 输入时显示
     */
    textField.clearButtonMode = UITextFieldViewModeAlways;
    //设置键盘的风格(数字键盘、26字母键盘等等) UIKeyboardTypeNumberPad数字键盘
    textField.keyboardType = UIKeyboardTypeNumberPad;
    //设置return的样式 即键盘上右下角的按键
    textField.returnKeyType = UIReturnKeyDone;
    //设置textfield的默认文本文字
    textField.text = @"Snail";
    //当编辑完后 再一次编辑时 是否清空里面的内容 YES:清空
    textField.clearsOnBeginEditing = YES;
    //判断textfield是否正在编辑
    BOOL ret = textField.editing;
    //textfield是否可以被编辑 YES:可编辑
    textField.enabled = NO;
    //输入的文本是否隐藏(password)
    textField.secureTextEntry = YES;
    //设置textfield的leftView、rightView  x、y的值不会影响leftView的位置  只与width、height有关
    UIView * leftView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 30, 40)];
    leftView.backgroundColor = [UIColor redColor];
    textField.leftView = leftView;
    //mode必须设置 否则将不会显示在textField上面
    textField.leftViewMode = UITextFieldViewModeAlways;
    
    [self.view addSubview:textField];
}

效果图如下

技术分享

版权声明:本文为博主原创文章,未经博主允许不得转载。

Snail—UI学习之UITextField

标签:

原文地址:http://blog.csdn.net/qq1791422018/article/details/47027823

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!