checkBox,單項勾選框(利用UIButton實現)

前言:其實,利用UIBuuton實現單項勾選框是比較容易的,只要設置不一樣的背景圖片就能夠了。
一、定義checkBox:ide

// 定義checkBox
UIButton *checkBox;
// 加一個背景顏色,方便查看效果
self.view.backgroundColor=[UIColor orangeColor];

checkBox=[UIButton buttonWithType:UIButtonTypeCustom];
checkBox.frame=CGRectMake(50, 100, 20, 20);
checkBox.backgroundColor=[UIColor whiteColor];

// [checkBox setImage:[UIImage imageNamed:@""] forState:UIControlStateNormal]; // 這行代碼能夠註釋掉,加上也沒有關係——未選中時的圖片
// 選中時的背景圖片圖片描述spa

[checkBox setImage:[UIImage imageNamed:@"check"] forState:UIControlStateSelected];
[checkBox addTarget:self action:@selector(check:) forControlEvents:UIControlEventTouchUpInside];
checkBox.layer.cornerRadius=5;
checkBox.layer.masksToBounds=YES;
[self.view addSubview:checkBox];

// 記住密碼的label
UILabel *label=[[UILabel alloc] initWithFrame:CGRectMake(70, 100, 120, 20)];
label.text=@"記住密碼";
label.textAlignment=NSTextAlignmentLeft;
[self.view addSubview:label];

// 觸發事件
- (void)check:(UIButton *)btn{
checkBox.selected=!checkBox.selected;
if (checkBox.selected) { // 記住密碼的操做
    
}else{ // 不記住密碼的操做
   
}

}code

效果圖以下:
圖片描述圖片描述
ok,功能實現了,是否是很簡單?圖片描述orm

相關文章
相關標籤/搜索