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

首頁(yè) > 系統(tǒng) > iOS > 正文

IOS代碼筆記之勾選"記住密碼"整體button

2019-10-21 18:53:50
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

本文實(shí)例為大家分享了IOS記住密碼整體button 的實(shí)現(xiàn)代碼,供大家參考,具體內(nèi)容如下

一、效果圖

  IOS,記住密碼,button

IOS,記住密碼,button

二、工程圖

 IOS,記住密碼,button

三、代碼
RootViewController.h

 

#import <UIKit/UIKit.h>@class BECheckBox;@interface RootViewController : UIViewController{ BECheckBox *passwordCheck;}@property(nonatomic,retain)BECheckBox *passwordCheck;@end 

RootViewController.m

#import "RootViewController.h"//加入頭文件#import "BECheckBox.h"@interface RootViewController ()@end@implementation RootViewController@synthesize passwordCheck;- (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.  //隱藏導(dǎo)航條 self.navigationController.navigationBarHidden=YES;  //忘記密碼按鈕 BECheckBox *passCheckBox=[[BECheckBox alloc]initWithFrame:CGRectMake(61, 55, 80, 30)]; [passCheckBox setTitle:@"記住密碼" forState:UIControlStateNormal]; [passCheckBox setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; passCheckBox.titleLabel.font=[UIFont systemFontOfSize:16]; [passCheckBox setTarget:self fun:@selector(passCheckBoxClick)]; passCheckBox.backgroundColor=[UIColor clearColor]; self.passwordCheck=passCheckBox; [self.view addSubview:self.passwordCheck]; }//記住密碼點(diǎn)擊-(void)passCheckBoxClick{ if ([self.passwordCheck isChecked]) { NSLog(@"記住密碼"); } else { NSLog(@"取消記住密碼"); }}- (void)didReceiveMemoryWarning{ [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated.}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持VEVB武林網(wǎng)。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到IOS開發(fā)頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 和田县| 嘉兴市| 德令哈市| 丰镇市| 颍上县| 邵武市| 淮安市| 宁城县| 安阳市| 东方市| 偃师市| 弥勒县| 衡水市| 洛阳市| 柳河县| 南通市| 万源市| 托里县| 莫力| 威远县| 奉新县| 安丘市| 丰镇市| 攀枝花市| 德州市| 安吉县| 珠海市| 山东| 南城县| 大姚县| 韶山市| 龙泉市| 孟津县| 青岛市| 垣曲县| 宁强县| 扶绥县| 包头市| 凉城县| 石家庄市| 石城县|