UITextField

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UITextField相关的知识,希望对你有一定的参考价值。

 

    //找到已经创建好的UITextField
    UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(50, 100, RFSCREEN_W - 100 , 45)];
    textField.leftImageName = @"login_user_icon"
    //设置边框样式
    textField.borderStyle = UITextBorderStyleNone;
    //通过layer设置圆角
    //textField.layer.cornerRadius = 10;
    textField.layer.borderColor = Color_White.CGColor;
    textField.layer.borderWidth = 1;
    // 设置字体颜色
    textField.textColor = Color_White;
    // 输入框中是否有个叉号,在什么时候显示,用于一次性删除输入框中的内容
    textField.clearButtonMode = UITextFieldViewModeAlways;
    //第一响应者,一个界面可能有多个可输入的控件,哪一个正在编辑哪一个就是第一响应者
    [textField becomeFirstResponder];
    // 设置左边图标
    UIImageView *leftImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"login_user_icon"]];
    leftImageView.frame = CGRectMake(0, 0, 50, 50);
    leftImageView.contentMode = UIViewContentModeCenter;
    textField.leftView = leftImageView;
    //设置左视图的显示模式
    textField.leftViewMode = UITextFieldViewModeAlways;
    // 设置键盘的样式
    textField.keyboardType = UIKeyboardTypeNumberPad;
    // 设置占位文字
    textField.placeholder = @"请输入用户名";
    // 设置占位文字的颜色
    [textField setValue:Color_White forKeyPath:@"placeholderLabel.textColor"];
    
    [self.view addSubview:textField];

 

以上是关于UITextField的主要内容,如果未能解决你的问题,请参考以下文章

UITextField 在被代码更改时触发 UITextFieldTextDidChangeNotification?

代码笔记UITextField设置placeholder颜色

如何设置 swift 3 UITextField 边框颜色?

UITEXTFIELD 无?

如何在 iOS 中为不同的区域代码实时格式化电话号码(使用 UITextfield 时)?

UITextField 触摸事件在 UIScrollView 中不起作用