123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #import <UIKit/UIKit.h>
- @class TOPasscodeCircleView;
- @interface TOPasscodeFixedInputView : UIView
- @property (nonatomic, assign) CGFloat circleDiameter;
- @property (nonatomic, assign) CGFloat circleSpacing;
- @property (nonatomic, assign) NSInteger length;
- @property (nonatomic, assign) NSInteger highlightedLength;
- @property (nonatomic, strong, readonly) NSArray<TOPasscodeCircleView *> *circleViews;
- - (instancetype)initWithLength:(NSInteger)length;
- - (void)setHighlightedLength:(NSInteger)highlightedLength animated:(BOOL)animated;
- @end
|