12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface TOPasscodeButtonLabel : UIView
- @property (nonatomic, assign) BOOL horizontalLayout;
- @property (nonatomic, copy) NSString *numberString;
- @property (nonatomic, copy, nullable) NSString *letteringString;
- @property (nonatomic, strong) UIColor *textColor;
- @property (nonatomic, readonly) UILabel *numberLabel;
- @property (nonatomic, readonly) UILabel *letteringLabel;
- @property (nonatomic, strong) UIFont *numberLabelFont;
- @property (nonatomic, strong) UIFont *letteringLabelFont;
- @property (nonatomic, assign) CGFloat letteringCharacterSpacing;
- @property (nonatomic, assign) CGFloat letteringVerticalSpacing;
- @property (nonatomic, assign) CGFloat letteringHorizontalSpacing;
- @property (nonatomic, assign) BOOL verticallyCenterNumberLabel;
- @end
- NS_ASSUME_NONNULL_END
|