UITextField 快速实现缩进

本文介绍如何使用UIKit框架中的UITextField来自定义文本字段的样式,包括设置占位符文本、字体颜色和大小、边框样式等,并演示了如何实现文本字段的内容缩进效果。

根据产品需求在textField基础上再缩进5像素
下面是创建UITextField 快速实现缩进的方法

-(UITextField*)titleTextField{
    if (_titleTextField == nil) {
        _titleTextField = [[UITextField alloc]init];
        _titleTextField.text =@"最美的产品,最真的诚意";
        _titleTextField.backgroundColor = [UIColor whiteColor];
        _titleTextField.font = _kFont32;
        _titleTextField.textColor = kColor3C3C3C;
        _titleTextField.delegate = self;
        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 5, 5)];//textField向内缩进5像素
        _titleTextField.leftView = view;
        _titleTextField.leftViewMode = UITextFieldViewModeAlways;

    }
    return _titleTextField;
}
-(UITextField*)couponTextField{
    if (_couponTextField == nil) {
        _couponTextField = [[UITextField alloc]init];
        _couponTextField.placeholder =@"输入优惠券密码,领取优惠券";
        _couponTextField.borderStyle = UITextBorderStyleRoundedRect;

        _couponTextField.clearButtonMode = UITextFieldViewModeWhileEditing;
        //设置placeholder 文字颜色 及大小
        [_couponTextField setValue:[UIColor colorWithRed:0.56f green:0.56f blue:0.56f alpha:1.00f] forKeyPath:@"_placeholderLabel.textColor"];
        [_couponTextField setValue:[UIFont systemFontOfSize:14] forKeyPath:@"_placeholderLabel.font"];
    }
    return _couponTextField;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值