国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

iOS實現賬號、密碼記住功能

2019-10-21 18:47:46
字體:
來源:轉載
供稿:網友

本文實例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內容如下

一、效果圖

iOS賬號密碼記住,iOS密碼記住,iOS賬號記住

iOS賬號密碼記住,iOS密碼記住,iOS賬號記住

二、工程圖

iOS賬號密碼記住,iOS密碼記住,iOS賬號記住

三、代碼

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];}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到IOS開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 靖安县| 隆化县| 安多县| 河南省| 颍上县| 连山| 宁河县| 叙永县| 大冶市| 剑阁县| 沅江市| 龙泉市| 武定县| 马尔康县| 南溪县| 南宁市| 普洱| 德州市| 赣榆县| 柳州市| 城固县| 丹阳市| 舟山市| 绍兴市| 嫩江县| 泰来县| 突泉县| 滦南县| 米脂县| 资兴市| 兰西县| 德钦县| 泗水县| 唐山市| 河南省| 光山县| 区。| 巴楚县| 子长县| 邯郸县| 水城县|