时间:2021-05-19
本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下
一、效果图
二、工程图
三、代码
RegisViewController.h
#import <UIKit/UIKit.h>@interface RegisViewController : UIViewController@endRegisViewController.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@endLoginViewController.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];}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
iPhone手机safari浏览器有个记住网页账号、密码的功能,但是由于某些原因,导致无法使用这个功能,使得每次都要重复输入账号、密码。一般的网站可以自动记住账
本文实例讲述了js实现登录时记住密码的方法。分享给大家供大家参考,具体如下:常见的很多网站登录,都有记住密码功能,下面是用js实现的记住密码功能(代码用的源生j
Android实现记住用户名和密码的功能是通过SharedPreference存储来实现的。创建一个复选按钮,通过按钮的否选取来进行事件处理。若按钮选中存储账号
在登录界面添加记住密码功能,我首先想到的是在java后台中调用cookie存放账号密码,大致如下:HttpServletRequestrequestHttpSe
要实现记住密码自动登录的功能我们大多数据都是利用了客户端的cookies来实现,我们利用php也不例外,有需要的朋友可以参考一下。php制作记住密码自动登录的解