UITextField控件
用处:输入控件
-(void)viewDidLoad
{
[super viewDidLoad];
//设置大小
CGRect frame = CGRectMake(20,20,150,40);
//实例化UITextField
self.tf = [[UITextField alloc]initWithFrame:frame];
//提示信息(灰体)
self.tf.placeholder = @"type in password";
//边框样式
self.tf.borderStyle = UITextBorderStyleRoundedRect;
//对齐方式
self.tf.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
self.tf.textAlignment = NSTextAlignmentLeft;
//密码
self.tf.secureTextEntry = YES;
//编辑时的清除按钮
self.tf.clearButtonMode = UITextFieldViewModeWhileEditing;
[self.view addSubView:self.tf];
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步