DOPMO-49460

Making text fields public for Security Code Autofill.
This commit is contained in:
moscopa 2019-06-10 11:12:17 -04:00
parent 3671843ecf
commit 423d28ede6
2 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,7 @@
#import <MVMCoreUI/MFTextField.h>
@class MFDigitTextBox;
@interface MFDigitTextField : MFTextField
+ (nullable instancetype)mfDigitTextFieldWithNumberOfDigits:(NSUInteger)numberOfDigits;
@ -18,4 +19,6 @@
- (void)setAsSecureTextEntry:(BOOL)secureTextEntry;
@property (nullable, nonatomic, strong) NSArray <MFDigitTextBox *>*textFields;
//Be careful when using this directly. There's a possiblity that you may break the view.
@end

View File

@ -29,7 +29,7 @@
@property (nullable, nonatomic, weak) IBOutlet NSLayoutConstraint *messageToTextFieldPin;
@property (nullable, nonatomic, weak) IBOutlet NSLayoutConstraint *labelToTextFieldPin;
@property (nullable, nonatomic, strong) NSArray <MFDigitTextBox *>*textFields;
@property (nonatomic) BOOL switchedAutomatically;
@end