iOS UITextField的边框设置颜色的小坑


    _textBoxName.layer.borderWidth=1.0f;

    _textBoxName.layer.borderColor=[UIColor colorWithRed:0xbf/255.0f green:0xbf/255.0f blue:0xbf/255.0f alpha:1].CGColor;

   设置的时候在ib里面记得选择无边框的,要不然随便你设置,都是无效的,也是坑死了。


   在uitextfield 中文字最左边距离左侧边框的距离


    _textBoxName.leftView=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 16, 51)];

    _textBoxName.leftViewMode=UITextFieldViewModeAlways;

    


你可能感兴趣的:(objective-c)