iOS 的 Checkbox UI 组件:CTCheckbox
jopen
11年前
CTCheckbox是用于iOS应用开发的Checkbox UI 组件库。
你可以将 UIView 放在 storyboard 之上并改变他的class成 CTCheckbox。UIViewController
@property (weak, nonatomic) IBOutlet CTCheckbox *checkbox;
[self.checkbox addTarget:self action:@selector(checkboxDidChanged:) forControlEvents:UIControlEventValueChanged]; self.checkbox.textLabel.text = @"Label text";
- (void)checkboxDidChanged:(CTCheckbox *)checkbox { NSLog(@"%d", checkbox.checked); }
Or create using initWithFrame:.