你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS簡略登錄LoginViewController、注冊RegisterViewController等功效完成辦法

iOS簡略登錄LoginViewController、注冊RegisterViewController等功效完成辦法

編輯:IOS開發綜合

1、小我中間未登錄

辦法:

      加斷定登錄狀況直接翻開小我中間頁面4,不然湧現下面引誘登錄或注冊進口顯示

代碼以下:   

#pragma mark addView
- (void)addView
{
 //配景圖
 [self.view setBackgroundColor:[UIColor whiteColor]];
 UIImageView *loginImgTips = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"login_tips.png"]];
 loginImgTips.frame = CGRectMake(33, 31, 255, 135);
 [self.view addSubview:loginImgTips];
 [loginImgTips release];
 
 //登錄、注冊提醒
 UILabel *loginLab = [[UILabel alloc] initWithFrame:CGRectMake(55, 43, 199, 80)];
 [loginLab setText:@"登錄工程師爸爸,網站珍藏、iPhone下載、可便利哩!"];
 [loginLab setTextColor:[UIColor blackColor]];
 [loginLab setBackgroundColor:[UIColor clearColor]];
 [loginLab setNumberOfLines:3];
 [loginLab setFont:[UIFont systemFontOfSize:18]];
 [self.view addSubview:loginLab];
 [loginLab release];
 
 //登錄
 UIButton *loginBtn = [[UIButton alloc] initWithFrame:CGRectMake(37, 180, 117, 37)];
 [loginBtn setBackgroundImage:[UIImage imageNamed:@"Button_login.png"] forState:UIControlStateNormal];
 [loginBtn setBackgroundImage:[UIImage imageNamed:@"[email protected]"] forState:UIControlStateHighlighted];
 [loginBtn addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
 [loginBtn setTag:101];
 [self.view addSubview:loginBtn];
 [loginBtn release];
 
 //注冊
 UIButton *registerBtn = [[UIButton alloc] initWithFrame:CGRectMake(164, 180, 117, 37)];
 [registerBtn setBackgroundImage:[UIImage imageNamed:@"Button_reg.png"] forState:UIControlStateNormal];
 [registerBtn setBackgroundImage:[UIImage imageNamed:@"[email protected]"] forState:UIControlStateHighlighted];
 [registerBtn addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
 [registerBtn setTag:102];
 [self.view addSubview:registerBtn];
 [registerBtn release];
}

2、登錄

頂部導航代碼:

#pragma mark addNavBar
-(void) addNavBar
{ 
 //前往按鈕
 UIButton *btnLeft = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 24, 24)];
 [btnLeft setBackgroundImage:[UIImage imageNamed:@"item_back.png"] forState:UIControlStateNormal];
 [btnLeft setBackgroundImage:[UIImage imageNamed:@"[email protected]"] forState:UIControlStateHighlighted];
 [btnLeft setTag:101];
 [btnLeft.titleLabel setFont:[UIFont boldSystemFontOfSize:14]];
 [btnLeft addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
 UIBarButtonItem *navBarBack = [[UIBarButtonItem alloc] initWithCustomView:btnLeft];
 [btnLeft release];
 
 [self.navigationItem setLeftBarButtonItem:navBarBack];
 [navBarBack release];
 
 //右邊完成
 UIBarButtonItem *navBarFinish = [[UIBarButtonItem alloc] initWithTitle:@"注冊" style:UIBarButtonItemStyleDone target:self action:@selector(btnClick:)];
 navBarFinish.tag = 102;
 self.navigationItem.rightBarButtonItem = navBarFinish;
 [navBarFinish release];
}

登錄界面代碼完成以下:

#pragma mark addView
//創立輸出框
- (void)addInput
{
 //根本參數界說
 CGFloat padx = 80.0f;
 _vFrame = CGRectMake(10, 14, 300, 80);
 UIFont *lpFont = [UIFont boldSystemFontOfSize:16];

 //郵箱和暗碼配景色彩設置
 _view = [[UIView alloc] initWithFrame:_vFrame];
 _view.layer.cornerRadius = 8.0;
 _view.layer.borderWidth = 1;
 _view.layer.borderColor = [UIColor colorWithRed:209.0f/255.0f green:209.0f/255.0f blue:209.0f/255.0f alpha:1.0f].CGColor;
 [_view setBackgroundColor:[UIColor colorWithRed:247.0f/255.0f green:247.0f/255.0f blue:247.0f/255.0f alpha:1.0f]];
 [self.view addSubview:_view];
 [_view release];
 
 //郵箱與暗碼中央朋分線
 UIView *line = [[UIView alloc] initWithFrame:CGRectMake(10, 55, 300, 1)];
 [line setBackgroundColor:[UIColor colorWithRed:209.0f/255.0f green:209.0f/255.0f blue:209.0f/255.0f alpha:1.0f]];
 [self.view addSubview:line];
 [line release];
 
 //用戶名或Email
 UIImageView * _eview = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 250, 40)];
 [_eview setUserInteractionEnabled:YES];
 [_view addSubview:_eview];
 [_eview release];
 
 UILabel *_unameLab = [[UILabel alloc] initWithFrame:CGRectMake(20, 5, 55, 40)];
 [_unameLab setText:@"用戶名"];
 _unameLab.highlighted = YES;
 _unameLab.highlightedTextColor = [UIColor blackColor];
 [_unameLab setFont:lpFont];
 [_unameLab setBackgroundColor:[UIColor clearColor]];
 [_unameLab setTextColor:[UIColor blackColor]];
 [_view addSubview:_unameLab];
 [_unameLab release];
 
 //用戶郵箱
 _email = [[UITextField alloc] initWithFrame:CGRectMake(padx, 15, 200, 40)];
 [_email setBackgroundColor:[UIColor clearColor]];
 [_email setKeyboardType:UIKeyboardTypeEmailAddress];
 [_email setTextColor:[UIColor grayColor]]; 
 //[_email setClearButtonMode:UITextFieldViewModeWhileEditing]; //編纂時會湧現個修正X
 [_email setTag:101];
 [_email setReturnKeyType:UIReturnKeyNext]; //鍵盤下一步Next
 [_email setAutocapitalizationType:UITextAutocapitalizationTypeNone]; //封閉首字母年夜寫
 [_email setAutocorrectionType:UITextAutocorrectionTypeNo];
 [_email becomeFirstResponder]; //默許翻開鍵盤
 [_email setFont:[UIFont systemFontOfSize:17]];
 [_email setDelegate:self];
 [_email setPlaceholder:@"用戶名或電子郵箱"];
 [_email setText:@""];
 [_email setHighlighted:YES]; 
 [_eview addSubview:_email];
 
 //暗碼
 UILabel *_passwdLab = [[UILabel alloc] initWithFrame:CGRectMake(20, 43, 45, 40)];
 [_passwdLab setText:@"密 碼"];
 [_passwdLab setFont:lpFont];
 _passwdLab.highlighted = YES;
 _passwdLab.highlightedTextColor = [UIColor blackColor];
 [_passwdLab setBackgroundColor:[UIColor clearColor]];
 [_passwdLab setTextColor:[UIColor blackColor]];
 [_view addSubview:_passwdLab];
 [_passwdLab release];
 
 _passwd = [[UITextField alloc] initWithFrame:CGRectMake(padx, 53, 200, 40)];
 [_passwd setBackgroundColor:[UIColor clearColor]];
 [_passwd setKeyboardType:UIKeyboardTypeDefault];
 [_passwd setBorderStyle:UITextBorderStyleNone];
 [_passwd setAutocapitalizationType:UITextAutocapitalizationTypeNone]; //封閉首字母年夜寫
 [_passwd setReturnKeyType:UIReturnKeyDone]; //完成
 [_passwd setSecureTextEntry:YES]; //驗證
 [_passwd setDelegate:self];
 [_passwd setTag:102];
 [_passwd setTextColor:[UIColor grayColor]];
 [_passwd setFont:lpFont];
 [_passwd setText:@""
 [_view addSubview:_passwd]; 
}

3、注冊

 


頂部導航掌握,代碼完成以下:

- (void)addNavBar
{
 if (_step == 1) {
 [self setXDNav:YES];
 
 //前往按鈕
 UIButton *btnLeft = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 24, 24)];
 [btnLeft setBackgroundImage:[UIImage imageNamed:@"item_back.png"] forState:UIControlStateNormal];
 [btnLeft setBackgroundImage:[UIImage imageNamed:@"[email protected]"] forState:UIControlStateHighlighted];
 [btnLeft setTag:101];
 [btnLeft.titleLabel setFont:[UIFont boldSystemFontOfSize:14]];
 [btnLeft addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
 UIBarButtonItem *navBarBack = [[UIBarButtonItem alloc] initWithCustomView:btnLeft];
 [btnLeft release];
 [self.navigationItem setLeftBarButtonItem:navBarBack];
 [navBarBack release];
 
 //設題目
 [self setXDTitle:@"注冊" pageName:@""];
 
 //添加前往按鈕
 
 [self addInputOne]; //注冊第一步
 }else{
 [self setXDTitle:@"瑰寶信息設置" pageName:@""];
  
 //前往按鈕
 UIButton *btnLeft = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 24, 24)];
 [btnLeft setBackgroundImage:[UIImage imageNamed:@"item_back.png"] forState:UIControlStateNormal];
 [btnLeft setBackgroundImage:[UIImage imageNamed:@"[email protected]"] forState:UIControlStateHighlighted];
 [btnLeft setTag:101];
 [btnLeft.titleLabel setFont:[UIFont boldSystemFontOfSize:14]];
 [btnLeft addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
 UIBarButtonItem *navBarBack = [[UIBarButtonItem alloc] initWithCustomView:btnLeft];
 [btnLeft release];
 
 [self.navigationItem setLeftBarButtonItem:navBarBack];
 [navBarBack release]; 
 
 //右邊完成
 UIBarButtonItem *navBarFinish = [[UIBarButtonItem alloc] initWithTitle:@"完成" style:UIBarButtonItemStyleDone target:self action:@selector(btnClick:)];
 navBarFinish.tag = 102;
 //[_navBarFinish addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
 self.navigationItem.rightBarButtonItem = navBarFinish;
 [navBarFinish release];
 [self addInputTow];
 }
}

注冊分兩步:

第一步根本信息注冊,代碼以下

//創立輸出框
- (void)addInputOne
{
 //根本參數界說
 CGFloat padx = 95.0f;
 _vFrame = CGRectMake(10, 14, 300, 125);
 UIFont *lpFont = [UIFont boldSystemFontOfSize:16];
 
 //郵箱和暗碼配景色彩設置
 _view = [[UIView alloc] initWithFrame:_vFrame];
 _view.layer.cornerRadius = 8.0;
 _view.layer.borderWidth = 1;
 _view.layer.borderColor = [UIColor colorWithRed:209.0f/255.0f green:209.0f/255.0f blue:209.0f/255.0f alpha:1.0f].CGColor;
 [_view setBackgroundColor:[UIColor colorWithRed:247.0f/255.0f green:247.0f/255.0f blue:247.0f/255.0f alpha:1.0f]];
 [self.view addSubview:_view];
 [_view release];
 
 //用戶名與暗碼中央朋分線
 UIView *lineOne = [[UIView alloc] initWithFrame:CGRectMake(10, 53, 300, 1)];
 [lineOne setBackgroundColor:[UIColor colorWithRed:209.0f/255.0f green:209.0f/255.0f blue:209.0f/255.0f alpha:1.0f]];
 [self.view addSubview:lineOne];
 [lineOne release];
 
 //用戶名
 UILabel *_unameLab = [[UILabel alloc] initWithFrame:CGRectMake(20, 2, 55, 40)];
 [_unameLab setText:@"用戶名"];
 _unameLab.highlighted = YES;
 _unameLab.highlightedTextColor = [UIColor blackColor];
 [_unameLab setFont:lpFont];
 [_unameLab setBackgroundColor:[UIColor clearColor]];
 [_unameLab setTextColor:[UIColor blackColor]];
 [_view addSubview:_unameLab];
 [_unameLab release];
 
 _uname = [[UITextField alloc] initWithFrame:CGRectMake(padx, 10, 230, 40)];
 [_uname setBackgroundColor:[UIColor clearColor]];
 [_uname setTag:101];
 [_uname setUserInteractionEnabled:YES];
 [_uname setKeyboardType:UIKeyboardTypeDefault];
 [_uname setReturnKeyType:UIReturnKeyNext]; //鍵盤下一步Next
 [_uname setAutocapitalizationType:UITextAutocapitalizationTypeNone]; //封閉首字母年夜寫
 [_uname setAutocorrectionType:UITextAutocorrectionTypeNo];
 [_uname setReturnKeyType:UIReturnKeyNext]; //下一個Passwd
 [_uname becomeFirstResponder]; //默許翻開鍵盤
 [_uname setFont:[UIFont systemFontOfSize:17]];
 [_uname setDelegate:self];
 [_uname setText:@""];
 [_uname setHighlighted:YES];
 [_view addSubview:_uname];
 
 //暗碼
 UILabel *_passwdLab = [[UILabel alloc] initWithFrame:CGRectMake(20, 43, 45, 40)];
 [_passwdLab setText:@"密 碼"];
 [_passwdLab setFont:lpFont];
 _passwdLab.highlighted = YES;
 _passwdLab.highlightedTextColor = [UIColor blackColor];
 [_passwdLab setBackgroundColor:[UIColor clearColor]];
 [_passwdLab setTextColor:[UIColor blackColor]];
 [_view addSubview:_passwdLab];
 [_passwdLab release];
 
 _passwd = [[UITextField alloc] initWithFrame:CGRectMake(padx, 53, 200, 40)];
 [_passwd setBackgroundColor:[UIColor clearColor]];
 [_passwd setKeyboardType:UIKeyboardTypeDefault];
 [_passwd setBorderStyle:UITextBorderStyleNone];
 [_passwd setAutocapitalizationType:UITextAutocapitalizationTypeNone]; //封閉首字母年夜寫
 [_passwd setReturnKeyType:UIReturnKeyNext]; //下一個Email
 [_passwd setSecureTextEntry:YES]; //驗證
 [_passwd setDelegate:self];
 [_passwd setTag:102];
 [_passwd setTextColor:[UIColor grayColor]];
 [_passwd setFont:lpFont];
 [_passwd setText:@""];
 [_view addSubview:_passwd];
 
 //郵箱與暗碼中央朋分線
 UIView *l.netow = [[UIView alloc] initWithFrame:CGRectMake(10, 95, 300, 1)];
 [l.netow setBackgroundColor:[UIColor colorWithRed:209.0f/255.0f green:209.0f/255.0f blue:209.0f/255.0f alpha:1.0f]];
 [self.view addSubview:l.netow];
 [lineTow release];
 
 //用戶郵箱
 UILabel *_emailLab = [[UILabel alloc] initWithFrame:CGRectMake(20, 82, 280, 40)];
 [_emailLab setText:@"電子郵箱"];
 _emailLab.highlighted = YES;
 _emailLab.highlightedTextColor = [UIColor blackColor];
 [_emailLab setFont:lpFont];
 [_emailLab setBackgroundColor:[UIColor clearColor]];
 [_emailLab setTextColor:[UIColor blackColor]];
 [_view addSubview:_emailLab];
 [_emailLab release];

 _email = [[UITextField alloc] initWithFrame:CGRectMake(padx, 92, 200, 40)];
 [_email setBackgroundColor:[UIColor clearColor]];
 [_email setKeyboardType:UIKeyboardTypeEmailAddress];
 [_email setTextColor:[UIColor grayColor]];
 [_email setTag:103];
 [_email setReturnKeyType:UIReturnKeyDone]; //鍵盤下一步Next
 [_email setAutocapitalizationType:UITextAutocapitalizationTypeNone]; //封閉首字母年夜寫
 [_email setAutocorrectionType:UITextAutocorrectionTypeNo]; 
 [_email setFont:[UIFont systemFontOfSize:17]];
 [_email setDelegate:self];
 [_email setPlaceholder:@"[email protected]"];
 [_email setText:@""];
 [_email setHighlighted:YES];
 [_view addSubview:_email];
}

第二步完美資本輸出,代碼完成以下:

//創立輸出框
- (void)addInputTow
{
 //根本參數界說
 CGFloat padx = 100.0f;
 _vFrame = CGRectMake(10, 10, 300, 125);
 UIFont *lpFont = [UIFont boldSystemFontOfSize:16];
 
 //瑰寶奶名、瑰寶性別、瑰寶誕辰配景色彩設置
 _view = [[UIView alloc] initWithFrame:_vFrame];
 _view.layer.cornerRadius = 8.0;
 _view.layer.borderWidth = 1;
 _view.layer.borderColor = [UIColor colorWithRed:209.0f/255.0f green:209.0f/255.0f blue:209.0f/255.0f alpha:1.0f].CGColor;
 [_view setBackgroundColor:[UIColor colorWithRed:247.0f/255.0f green:247.0f/255.0f blue:247.0f/255.0f alpha:1.0f]];
 [self.view addSubview:_view];
 [_view release];
 
 //瑰寶奶名和瑰寶性別朋分線
 UIView *lineOne = [[UIView alloc] initWithFrame:CGRectMake(10, 10, 300, 1)];
 [lineOne setBackgroundColor:[UIColor colorWithRed:209.0f/255.0f green:209.0f/255.0f blue:209.0f/255.0f alpha:1.0f]];
 [self.view addSubview:lineOne];
 [lineOne release];
 
 //瑰寶奶名
 UILabel *_nicknameLab = [[UILabel alloc] initWithFrame:CGRectMake(20, 2, 75, 40)];
 [_nicknameLab setText:@"瑰寶奶名"];
 _nicknameLab.highlighted = YES;
 _nicknameLab.highlightedTextColor = [UIColor blackColor];
 [_nicknameLab setFont:lpFont];
 [_nicknameLab setBackgroundColor:[UIColor clearColor]];
 [_nicknameLab setTextColor:[UIColor blackColor]];
 [_view addSubview:_nicknameLab];
 [_nicknameLab release];
 
 _nickname = [[UITextField alloc] initWithFrame:CGRectMake(padx, 13, 180, 40)];
 [_nickname setBackgroundColor:[UIColor clearColor]];
 [_nickname setTag:101];
 [_nickname setUserInteractionEnabled:YES];
 [_nickname setKeyboardType:UIKeyboardTypeDefault];
 [_nickname setReturnKeyType:UIReturnKeyNext]; //鍵盤下一步Next
 [_nickname setAutocapitalizationType:UITextAutocapitalizationTypeNone]; //封閉首字母年夜寫
 [_nickname setAutocorrectionType:UITextAutocorrectionTypeNo];
 [_nickname setReturnKeyType:UIReturnKeyNext]; //下一個瑰寶性別
 [_nickname becomeFirstResponder]; //默許翻開鍵盤
 [_nickname setFont:[UIFont systemFontOfSize:17]];
 [_nickname setDelegate:self];
 [_nickname setText:@""];
 [_nickname setHighlighted:YES];
 [_view addSubview:_nickname];
 
 //瑰寶性別
 UILabel *_sexLab = [[UILabel alloc] initWithFrame:CGRectMake(20, 35, 75, 50)];
 [_sexLab setText:@"瑰寶性別"];
 [_sexLab setFont:lpFont];
 _sexLab.highlighted = YES;
 _sexLab.highlightedTextColor = [UIColor blackColor];
 [_sexLab setBackgroundColor:[UIColor clearColor]];
 [_sexLab setTextColor:[UIColor blackColor]];
 [_view addSubview:_sexLab];
 [_sexLab release];

 _segment = [[UISegmentedControl alloc] initWithItems:
     [NSArray arrayWithObjects:
     @"男",@"女",
     nil]];
 _segment.frame = CGRectMake(padx+10, 56, 130, 32);
 _segment.segmentedControlStyle = UISegmentedControlStylePlain;
 _segment.selectedSegmentIndex = 1;
 [self.view addSubview:_segment];
 [_segment release];
 
 //瑰寶性別與瑰寶誕辰中央朋分線
 UIView *lineTow = [[UIView alloc] initWithFrame:CGRectMake(10, 93, 300, 1)];
 [lineTow setBackgroundColor:[UIColor colorWithRed:209.0f/255.0f green:209.0f/255.0f blue:209.0f/255.0f alpha:1.0f]];
 [self.view addSubview:lineTow];
 [lineTow release];
 
 //瑰寶誕辰
 UILabel *_birthLab = [[UILabel alloc] initWithFrame:CGRectMake(30, 96, 75, 40)];
 [_birthLab setText:@"瑰寶誕辰"];
 _birthLab.highlighted = YES;
 _birthLab.highlightedTextColor = [UIColor blackColor];
 [_birthLab setFont:lpFont];
 [_birthLab setBackgroundColor:[UIColor clearColor]];
 [_birthLab setTextColor:[UIColor blackColor]];
 [self.view addSubview:_birthLab];
 [_birthLab release];
 
 _birthDay = [[UIButton alloc] initWithFrame:CGRectMake(57, 96, 200, 40)];
 [_birthDay setBackgroundColor:[UIColor clearColor]];
 [_birthDay setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
 [_birthDay setTitle:@"2004-10-09" forState:UIControlStateNormal];
 [_birthDay setTag:104];
 [_birthDay addTarget:self action:@selector(openBirthday) forControlEvents:UIControlEventTouchUpInside];
 [_birthDay setHighlighted:YES];
 [self.view addSubview:_birthDay];
 
 //瑰寶信息提醒
 UILabel *_babyNote = [[UILabel alloc] initWithFrame:CGRectMake(45, 131, 300, 40)];
 [_babyNote setBackgroundColor:[UIColor clearColor]];
 [_babyNote setTextColor:[UIColor colorWithRed:83.0f/255.0f green:92.0f/255.0f blue:112.0f/255.0f alpha:1.0f]];
 [_babyNote setTag:104];
 [_babyNote setFont:[UIFont systemFontOfSize:14]];
 [_babyNote setText:@"推舉引擎會依據孩子信息停止特性推舉"];
 [_babyNote setHighlighted:YES];
 [self.view addSubview:_babyNote];
 [_babyNote release];
 
 //初始日期選擇控件
 _datePicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0.0, 200.0, 0.0, 0.0)];
 NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; 
 [dateFormatter setDateFormat:@"yyyy-MM-dd"];

 //將以後誕辰時光設置到日期輪軸上
 _datePicker.date = [dateFormatter dateFromString:_birthDay.titleLabel.text];
 
 //設置為中文顯示
 NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"zh_CN"];
 _datePicker.locale = locale;
 [locale release];
 [_datePicker setDatePickerMode:UIDatePickerModeDate];
 
 [_datePicker addTarget:self action:@selector(dataValueChanged) forControlEvents:UIControlEventValueChanged];
 [self.view addSubview:_datePicker];
}

4、注冊,登錄勝利後直接進入小我中間頁


頂部界面代碼完成以下:

#pragma mark addHeadView
- (void)addHeadView
{
 //頭像配景設置
 UIView *headView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 84)];
 [headView setBackgroundColor:[UIColor colorWithRed:247.0f/255.0f green:247.0f/255.0f blue:247.0f/255.0f alpha:1.0f]];
 
 //按鈕方法添加左邊用頭像
 UIButton *headBtn = [[UIButton alloc] initWithFrame:CGRectMake(10, 10, 64, 64)];
 [headBtn setBackgroundImage:[UIImage imageNamed:@"Baby_head.png"] forState:UIControlStateNormal];
 headBtn.layer.cornerRadius = 8.0;
 headBtn.layer.masksToBounds = YES;
 [headView addSubview:headBtn];
 [headBtn release];
 [self.view addSubview:headView];
 
 //用戶名
 UILabel *unameLab = [[UILabel alloc] initWithFrame:CGRectMake(89, 15, 200, 20)];
 [unameLab setText:@"balbaba"];
 [unameLab setTextColor:[UIColor blackColor]];
 [unameLab setFont:[UIFont boldSystemFontOfSize:16]];
 [unameLab setBackgroundColor:[UIColor clearColor]];
 [headView addSubview:unameLab];
 
 //瑰寶頭像小圖
 UIImageView *iconView = [[UIImageView alloc] initWithFrame:CGRectMake(89, 38, 24, 24)];
 [iconView setImage:[UIImage imageNamed:@"Baby_gender_boy.png"]]; 
 [headView addSubview:iconView];
 
 //瑰寶昵稱
 UILabel *nicknameLab = [[UILabel alloc] initWithFrame:CGRectMake(120, 40, 120, 20)];
 [nicknameLab setText:@"瑰寶qgggfgghhjjjk"];
 [nicknameLab setTextColor:[UIColor blackColor]];
 [nicknameLab setFont:[UIFont systemFontOfSize:14]];
 [nicknameLab setBackgroundColor:[UIColor clearColor]];
 [headView addSubview:nicknameLab];
 
 //瑰寶誕辰
 UILabel *birthDayLab = [[UILabel alloc] initWithFrame:CGRectMake(230, 40, 80, 20)];
 [birthDayLab setText:@", 4歲3個月"];
 [birthDayLab setTextColor:[UIColor blackColor]];
 [birthDayLab setFont:[UIFont systemFontOfSize:14]];
 [birthDayLab setBackgroundColor:[UIColor clearColor]];
 [headView addSubview:birthDayLab];
 
 [headView release];
}

分段表格視圖完成代碼以下:

#pragma mark addTableView
- (void)addTableView
{
 _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 84, 320, 416) style:UITableViewStylePlain];
 [_tableView setDelegate:self];
 [_tableView setDataSource:self];
 
 //消除分隔線
 //_tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
 [self.view addSubview:_tableView];
}

//署理-每一個行的Cell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
 
 NSString *iden = [NSString stringWithFormat:@"_ucenterCell_%d", 1];
 
 UcenterCell *cell = [tableView dequeueReusableCellWithIdentifier:iden];
 
 if (cell == nil) {
 cell = [[[UcenterCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:iden] autorelease];
 }
 
 //cell.selectionStyle = UITableViewCellSelectionStyleNone;
 cell.AccessoryType = UITableViewCellAccessoryDisclosureIndicator; 
 
 NSDictionary *dic = [[[_dataList objectAtIndex:indexPath.section] objectForKey:@"subs"] objectAtIndex:indexPath.row]; 
 [cell setValueForDictionary:dic];
 
 return cell;
}

//若干個段
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
 return [_dataList count];
}

//段的高度
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
 return 22;
}

//設置每段顯示Title
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
 return [[[[_dataList objectAtIndex:section] objectForKey:@"subs"] objectAtIndex:0] objectForKey:@"section"];
}

//署理-每段有若干行
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
 return [[[_dataList objectAtIndex:section] objectForKey:@"subs"] count];
}

//署理-盤算每一個行的高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
 return 44.0f;
}

//署理-選擇行的觸發事宜
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
 [tableView deselectRowAtIndexPath:indexPath animated:YES];
 
 //點擊推出頁面
 DetailViewController *rvc = [[DetailViewController alloc] init];
 [self.navigationController pushViewController:rvc animated:YES];
 [rvc release];
}

注:

    1、注冊、登錄功效重要是教練對鍵盤和輸出框UITextField、UISegment及UIPickerView的闇練應用

    2、在注冊、登錄時頂部導航左、中、右相干的"前往" 、"注冊"、"完成"等按鈕盡可能直接應用體系的的相似上面代碼

 [self.navigationItem setLeftBarButtonItem:navBarBack];
 self.navigationItem.rightBarButtonItem = navBarFinish;
 [self.navigationItem.titleView addSubview:segment];

在各個ViewController之間切換和掌握。

至此完全的用戶注冊、登錄、進入中間頁界面完成就完成了,聯合下面的代碼完成其它IOS項目App運用的功效和流程上年夜同小異,須要我們本身依據現實產物營業的請求

做出調劑,願望對網友有贊助。

 以上就是本文的全體內容,願望對年夜家的進修有所贊助,也願望年夜家多多支撐本站。

【iOS簡略登錄LoginViewController、注冊RegisterViewController等功效完成辦法】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved