12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #import <UIKit/UIKit.h>
- @interface TOPasscodeVariableInputView : UIImageView
- @property (nonatomic, assign) CGFloat outlineThickness;
- @property (nonatomic, assign) CGFloat outlineCornerRadius;
- @property (nonatomic, assign) CGFloat circleDiameter;
- @property (nonatomic, assign) CGFloat circleSpacing;
- @property (nonatomic, assign) CGSize outlinePadding;
- @property (nonatomic, assign) NSInteger maximumVisibleLength;
- @property (nonatomic, assign) NSInteger length;
- - (void)setLength:(NSInteger)length animated:(BOOL)animated;
- @end
|