首頁| 新聞| 娛樂| 游戲| 科普| 文學| 編程| 系統| 數據庫| 建站| 學院| 產品| 網管| 維修| 辦公| 熱點
本文實例為大家分享了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];}
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。
選擇筆記本處理器(CPU)需避免那
如何玩轉筆記本視頻輸出的三種
選擇筆記本處理器(CPU)需避免那些誤區和基
校園甜美的背影,洋溢著青春爛漫的回憶
芭蕾舞蹈表演,真實美到極致
游覽合肥濱湖濕地公園 美不勝收的濕地景
夏日圖賞:初夏若雨等花開
肉食主義者的最愛美食烤肉圖片
夏日甜心草莓美食圖片
人逢知己千杯少,喝酒搞笑圖集
搞笑試卷,學生惡搞答題
新聞熱點
疑難解答
圖片精選
xcode 4 制作靜態庫圖文詳解
IOS開發環境windows化攻略
iOS內存錯誤EXC_BAD_ACCESS的解決
yii框架分類樹擴展示例
網友關注