// // JKLockButton.h // Lock // // Created by Jack on 2016/10/13. // Copyright © 2016年 mini1. All rights reserved. // #import @interface JKLockButton : UIButton @property (nonatomic,assign) NSInteger number; @property (nonatomic,strong) UIColor *strokColor; @property (nonatomic,strong) UIColor *fillColor; @property (nonatomic,strong) UIColor *highlightColor; - (instancetype)initWithFrame:(CGRect)frame strokColor:(UIColor *)strokColor highlightColor:(UIColor *)highlightColor; @end