国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 铜梁县| 宝应县| 大关县| 台山市| 闸北区| 醴陵市| 靖安县| 宿松县| 广元市| 花莲县| 和田市| 修水县| 永州市| 蒙自县| 璧山县| 大厂| 运城市| 泽州县| 措勤县| 铜鼓县| 曲水县| 合山市| 灵武市| 昆山市| 成都市| 邻水| 正宁县| 中阳县| 扶余县| 息烽县| 新闻| 台湾省| 兴文县| 无锡市| 淄博市| 长岭县| 福清市| 鄂州市| 清远市| 舞钢市| 信阳市|