IOS 코드 노트 의 체크"비밀번호 기억 하기"전체 button

본 논문 의 사례 는 IOS 기억 암호 전체 button 의 실현 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
효과 도
 

2.공정 도
 
코드
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.
 
 //     
 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];

 
}
//      
-(void)passCheckBoxClick
{
 if ([self.passwordCheck isChecked]) {
 NSLog(@"    ");
 }
 else {
 NSLog(@"      ");
 }
}


- (void)didReceiveMemoryWarning
{
 [super didReceiveMemoryWarning];
 // Dispose of any resources that can be recreated.
}

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기