33 lines
601 B
Objective-C
Executable File
33 lines
601 B
Objective-C
Executable File
//
|
|
// PYGetSmsCodeButton.h
|
|
// Food
|
|
//
|
|
// Created by ko1o on 2019/7/23.
|
|
// Copyright © 2019年 ko1o. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
typedef NS_ENUM(NSUInteger, PYGetSMSCodeType) {
|
|
PYGetSMSCodeTypeLogin, // 验证码登录
|
|
PYGetSMSCodeTypeResetPhone,
|
|
};
|
|
|
|
static int maxGetSmsCodeTimeInterval = 60;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PYGetSmsCodeButton : UIButton
|
|
|
|
+ (instancetype)smsCodeButton;
|
|
|
|
@property (nonatomic, assign) PYGetSMSCodeType type;
|
|
|
|
@property (nonatomic, copy) NSString *(^getSmsWithPhoneBlock)(void);
|
|
|
|
- (void)startTimer;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|