登录页面

登录页面除了简单布局控件之外,所用的方法技巧:
1.控件透明度设置
我们在设置控件的透明度时,用alpha往往会使我们不希望透明的部分也透明了,例如:
我们在设置textField的透明度时,我们输入的字体内容也会跟着变透明,然而这并不是我们想要的。解决方法:
UIColor *color = [UIColor colorWithRed:135/255.0 green:206/255.0 blue:250/255.0 alpha:1];
_accountText.backgroundColor = [color colorWithAlphaComponent:0.7];
通过这个方法可以使控件本身透明,而字体不透明。
2.控件圆角
_accountText.layer.cornerRadius = 5;
_accountText.layer.masksToBounds = YES;
3.弹出输入框
UIBarButtonItem *leftBtn = [[UIBarButtonItem alloc]initWithTitle:@"我是管理员" style:UIBarButtonItemStylePlain target:self action:@selector(manageLogin)];
self.navigationItem.leftBarButtonItem = leftBtn;
-(void)manageLogin{
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:@"管理员登录" preferredStyle:UIAlertControllerStyleAlert];
//增加确定按钮;
[alertController addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
//获取第1个输入框;
UITextField *userNameTextField = alertController.textFields.firstObject;
//获取第2个输入框;
UITextField *passwordTextField = alertController.textFields.lastObject;

     NSLog(@"用户名 = %@,密码 = %@",userNameTextField.text,passwordTextField.text);
    
}]];

//增加取消按钮;
[alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:nil]];

//定义第一个输入框;
[alertController addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
    textField.placeholder = @"输入管理员";
}];
//定义第二个输入框;
    [alertController addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
        textField.placeholder = @"请输入密码";
        textField.secureTextEntry = YES;
    }];

[self presentViewController:alertController animated:true completion:nil];

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容