19 lines
355 B
Objective-C
19 lines
355 B
Objective-C
//
|
|
// GetSmsCodeViewController.h
|
|
// Youth
|
|
//
|
|
// Created by mambaxie on 2022/1/1.
|
|
//
|
|
|
|
#import "LoginBaseViewController.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
UIKIT_EXTERN NSUInteger SMSCodeNumberCount;
|
|
|
|
@interface GetSmsCodeViewController : LoginBaseViewController<UITextInputDelegate>
|
|
|
|
- (instancetype)initWithPhone:(NSString *)phone;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|