ios textfield的使用
ios uitextfield的使用
操作方法
- 01
UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(20, 20, 130, 30)]; 创建textview
- 02
tf.placeholder=@"我是一个好人";
- 03
tf.clearButtonMode=UITextFieldViewModeWhileEditing;
- 04
tf.borderStyle=UITextBorderStyleRoundedRect; 设置边框
- 05
tf.textAlignment=NSTextAlignmentRight; 文字居右
- 06
[tf resignFirstResponder]; 取消键盘
- 07
tf.adjustsFontSizeToFitWidth=YES; 自动适配宽度
赞 (0)