mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 08:49:31 +08:00
20 lines
336 B
Objective-C
20 lines
336 B
Objective-C
//
|
|
// CheckBox.h
|
|
// IconTestApp
|
|
//
|
|
// Created by Alexey Chechetkin on 13.08.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@interface CheckBox : UIControl
|
|
|
|
@property( nonatomic ) BOOL on;
|
|
@property (nonatomic ) UIColor *color;
|
|
|
|
- (void)setOn:(BOOL)on animated:(BOOL)animated;
|
|
|
|
@end
|