UITextField,常见属性的罗列和用法
UITextField是UIControl的子类 ,属于控件类(因为它有能力响应一些高级事件),在故事版中可以直接拖拽过来使用。
首先定义
UITextField *name;
name = [[UITextField alloc]initWithFrame:CGRectMake(30, 70, 260, 60)];//创建一个文本框并初始化,为了方便在这里一块定义了Frame属性
name.borderStyle = UITextBorderStyleRoundedRect;//设置文本框的风格 文本框邮很多样式,可以在这里选择自己需要的样式
name.placeholder = @"好吧";//占位符 就是在你没在框内输入任何信息,框内自动显示的提示内容,当你正式输入的时候,该信息回自动消失
name.textColor = [UIColor yellowColor];//定义输入文本框文字的颜色
name.backgroundColor = [UIColor cyanColor];//定义文本框的背景颜色
name.textAlignment = NSTextAlignmentCenter; //水平对齐方式
name.contentVerticalAlignment = UIControlContentVerticalAlignmentBottom;//垂直对齐方式
name.background = [UIImage imageNamed:@"aaa"];//文本框的背景可以是图片 aaa代表图片的名字
name.secureTextEntry = YES;//类似输入密码,别人看不到你输入的东西
name.keyboardType = UIKeyboardTypeEmailAddress;//设置当你点击文本框以后,自动弹出键盘的样式
[self.view addSubview:name];//最后将这个控件添加到视图上,不加这句看不到任何控件
来个高级的文本框 就是在文本框的前端有图像或者其他东西
代码实现如下
UIView *v = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 30, 30)];
v.backgroundColor = [UIColor redColor];
name.leftView = v;
name.leftViewMode = UITextFieldViewModeAlways;//此处用来设置leftview现实时机
本案例是加了一个小视图,当然前面可以加图片 例如
前面那个小人头就是一张图片 代码实现如下:
- UIImageView *imageViewUserName=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 30, 30)];
- imageViewUserName.image=[UIImage imageNamed:@"userinfo.png"];
- userName.leftView=imageViewUserName;
- userName.leftViewMode=UITextFieldViewModeAlways; //此处用来设置leftview现实时机