UITextFieldDelegate

2024/4/16 8:01:03

UITextField 的使用

1.UITextField 的基本设置 UITextField *passTf [[UITextField alloc]init];//初始化passTf.placeholder "密码";//填充背景提示passTf.secureTextEntry YES; //设置为密码格式,默认是明文格式passTf.delegate self;//设置代理,能够使用协…