众所周知,在做一款好的企业级应用时,首先,你应该注意到关于用户交互上的一些细节处理。
1.在登录页面按回车的时候做以下处理,假设我们登陆界面有三个登陆框,昵称,密码跟服务器地址,怎么样才能做到当我们按回车的时候会自动跳到我们没有填写的那一行上,以及当我们都填完时按回车就会进行登录?
#pragma mark - UITextField代理方法
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
NSString *userName = [_usernameText.text trimString];
//提示,有些用户是喜欢用空格当密码的,因此,此处不要截断空白字符
NSString *password = _passwordText.text;
NSString *hostName = [_hostNameText.text trimString];
if (userName.length > 0 && password.length > 0 && hostName.length > 0) {
[selfuserLogin:nil];
} else {
//从上向下依次判断文本框,是否有输入内容
if (userName.length == 0) {
[_usernameTextbecomeFirstResponder];
} else if (password.length ==0) {
[_passwordTextbecomeFirstResponder];
} else {
[_hostNameTextbecomeFirstResponder];
}
}
return YES;
}
stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]