IOS UITextField

 UITextField文本框

    UITextField * textField = [[UITextField alloc] initWithFrame:CGRectMake(50, 50, 200, 50)];

    textField.backgroundColor = [UIColor yellowColor];

     文本框显示设置

     1.文字

    textField.text = @"110";

     2.文字颜色

    textField.textColor = [UIColor redColor];

     3.文字位置

    textField.textAlignment = NSTextAlignmentCenter;

     4.文字大小

    textField.font = [UIFont systemFontOfSize:20];

     5.输入提示

    textField.placeholder = @"请输入:";

    

    输入控制设置

   1.是否允许输入

    textField.enabled = YES;

  2.是否清空

    textField.clearsOnBeginEditing = YES;

    3.密码以圆点显示

    textField.secureTextEntry = YES;

    4.键盘

    textField.keyboardType = UIKeyboardTypeNumberPad;

    UIView *keyBoardView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 1, 100)];

    keyBoardView.backgroundColor = [UIColor redColor];

     **取代键盘位置的view

     textField.inputView = keyBoardView;

    ** 在原来键盘之上附加一块view

    textField.inputAccessoryView = keyBoardView;

    

     外观设置

    textField.borderStyle = UITextBorderStyleRoundedRect;


     添加图片

    UIImageView *imv = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"la.png"]];

    imv.frame = CGRectMake(0, 0, 50, 50);

     在文本框左边显示一张图片

    textField.leftView = imv;

    textField.leftViewMode = UITextFieldViewModeAlways;

     清除文本框的内容

    textField.clearButtonMode = UITextFieldViewModeAlways;


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值