UITextField 基本设置

时间:2023-03-09 07:07:40
UITextField  基本设置
_myAccount = [[UITextField alloc]init];
_myAccount.frame = CGRectMake(, , , );
_myAccount.backgroundColor = [UIColor clearColor];
[_myAccount.layer setCornerRadius:];
//设置输入框的颜色
CGColorRef cgColor = [UIColor grayColor].CGColor;
_myAccount.layer.borderColor = cgColor;
//输入框像左空几格 40
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(, ,, )];
_myAccount.leftView = paddingView;
_myAccount.leftViewMode = UITextFieldViewModeAlways; //居中
_myAccount.layer.borderWidth= 1.0f;
_myAccount.delegate = self;
_myAccount.placeholder = @"请输入账号或手机号";
_myAccount.font = [UIFont systemFontOfSize:];
_myAccount.clearButtonMode = UITextFieldViewModeWhileEditing;
_myAccount.contentVerticalAlignment = UIControlContentHorizontalAlignmentCenter;
[_myLoginView addSubview:_myAccount];