UITextField前面空几格

来源:互联网 发布:园林设计效果图软件 编辑:程序博客网 时间:2024/05/22 09:50

有些文本框TextField 前面需要空几格

首先要有一个初始化的文本框

  UITextField *textfiled = [[UITextField alloc] init];    //界面外观    textfiled.borderStyle =UITextBorderStyleRoundedRect;    //线宽    textfiled.layer.borderWidth = 1;    //倒角    textfiled.layer.cornerRadius = 3;    //线的颜色    textfiled.layer.borderColor = [UIColor yellowColor].CGColor;    //保密输入    textfiled.secureTextEntry = YES;

设置textfiled的leftView 可以让其控制空的位置长短

//CGRectMake(0, 0,15, 0)离上下左右的距离UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0,15, 0)];textfiled.leftView = paddingView;textfiled.leftViewMode = UITextFieldViewModeAlways;

这样光标就显示在距文本左端像素点为15的地方,包括文字也是。

0 0
原创粉丝点击