We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75ac23b commit 8ee7f28Copy full SHA for 8ee7f28
README.md
@@ -54,6 +54,8 @@
54
@property (strong, nonatomic) UIFont *font;
55
///颜色
56
@property (strong, nonatomic) UIColor *textColor;
57
+///输入类型:数字+字母,数字,字母. Default is 'JHVCConfigInputType_Number_Alphabet'
58
+@property (nonatomic, assign) JHVCConfigInputType inputType;
59
@end
60
```
61
@@ -73,6 +75,7 @@
73
75
config.inputBoxColor = [UIColor brownColor];
74
76
config.font = [UIFont boldSystemFontOfSize:16];
77
config.textColor = [UIColor brownColor];
78
+ config.inputType = JHVCConfigInputType_Number_Alphabet; // Default
79
80
[self.view addSubview:({
81
JHVerificationCodeView *codeView =
0 commit comments