iOS实现账号、密码记住功能
2019/7/9 22:58:42
本文主要是介绍iOS实现账号、密码记住功能,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下
一、效果图
二、工程图
三、代码
RegisViewController.h
#import <UIKit/UIKit.h> @interface RegisViewController : UIViewController @end
RegisViewController.m
//注册页面 #import "RegisViewController.h" #import "LoginViewController.h" @interface RegisViewController () { UITextField *accountField; UITextField *passField; } @end @implementation RegisViewController - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self; } - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"注册"; [self initView]; } -(void)initView { accountField=[[UITextField alloc]initWithFrame:CGRectMake(50, 100, 200, 40)]; [accountField setBackgroundColor:[UIColor redColor]]; [accountField setPlaceholder:@"请输入账号"]; [accountField setKeyboardType:UIKeyboardTypeNumberPad]; [accountField setClearsContextBeforeDrawing:YES]; [self.view addSubview:accountField]; passField=[[UITextField alloc]initWithFrame:CGRectMake(50, 160, 200, 40)]; [passField setBackgroundColor:[UIColor redColor]]; [passField setPlaceholder:@"请输入密码"]; [passField setKeyboardType:UIKeyboardTypeNumberPad]; [passField setClearsContextBeforeDrawing:YES]; [self.view addSubview:passField]; UIButton *registeBut=[UIButton buttonWithType:UIButtonTypeRoundedRect]; registeBut.backgroundColor=[UIColor greenColor]; registeBut.frame=CGRectMake(70, 220, 100, 40); [registeBut setTitle:@"注册" forState:UIControlStateNormal]; [registeBut addTarget:self action:@selector(resis) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:registeBut]; } //注册的时候,将账号,密码保存到本地。 -(void)resis { NSUserDefaults *defaut=[NSUserDefaults standardUserDefaults]; [defaut setObject:accountField.text forKey:@"account"]; [defaut setObject:passField.text forKey:@"password"]; [defaut synchronize]; LoginViewController *login=[[LoginViewController alloc]init]; [self.navigationController pushViewController:login animated:YES]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. }
LoginViewController.h
#import <UIKit/UIKit.h> @interface LoginViewController : UIViewController @end
LoginViewController.m
//登陆页面 #import "LoginViewController.h" @class RegisViewController; @interface LoginViewController () { UITextField *accountField; UITextField *passField; } @end @implementation LoginViewController - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self; } - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"登陆"; [self initView]; } -(void)initView { accountField=[[UITextField alloc]initWithFrame:CGRectMake(50, 100, 200, 40)]; [accountField setBackgroundColor:[UIColor redColor]]; [accountField setKeyboardType:UIKeyboardTypeNumberPad]; [accountField setClearsContextBeforeDrawing:YES]; [accountField setText:[[NSUserDefaults standardUserDefaults] objectForKey:@"account"]]; [self.view addSubview:accountField]; passField=[[UITextField alloc]initWithFrame:CGRectMake(50, 160, 200, 40)]; [passField setBackgroundColor:[UIColor redColor]]; [passField setText:[[NSUserDefaults standardUserDefaults] objectForKey:@"password"]]; [passField setKeyboardType:UIKeyboardTypeNumberPad]; [passField setClearsContextBeforeDrawing:YES]; [self.view addSubview:passField]; UIButton *loginBut=[UIButton buttonWithType:UIButtonTypeRoundedRect]; loginBut.backgroundColor=[UIColor greenColor]; loginBut.frame=CGRectMake(70, 220, 100, 40); [loginBut setTitle:@"登陆" forState:UIControlStateNormal]; [loginBut addTarget:self action:@selector(login) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:loginBut]; } -(void)login { [self.navigationController popViewControllerAnimated:YES]; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持找一找教程网。
这篇关于iOS实现账号、密码记住功能的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12Axios库资料:新手入门必读教程
- 2024-11-11Axios库项目实战:新手入门教程
- 2024-09-29Axios库教程:初学者必备指南
- 2024-08-29Axios库资料:新手入门指南与基本使用教程
- 2024-03-14system bios shadowed
- 2024-03-14gabios
- 2024-02-07iOS应用提交上架的最新流程
- 2024-02-06打包 iOS 的 IPA 文件
- 2023-12-07uniapp打包iOS应用并通过审核:代码混淆的终极解决方案 ?
- 2023-11-25uniapp IOS从打包到上架流程(详细简单) 原创