关于登陆页面回车键的一些细节处理

众所周知,在做一款好的企业级应用时,首先,你应该注意到关于用户交互上的一些细节处理。

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;

}

2.在登录时账号跟服务器前后是没有空格的,所有要用下面方法,添加类别,返回一个前后没有空格的字符串

stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]



你可能感兴趣的:(密码,应用,UITextField)