123456789101112131415161718192021222324252627282930 |
- //
- // BasePhoneViewController.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/29.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import "BaseViewController.h"
- @interface BasePhoneViewController : BaseViewController
- @property (nonatomic, strong) IBOutlet UITextField* phoneTextField;
- @property (nonatomic, strong) IBOutlet UIButton* securityCodeButton;
- @property (nonatomic, strong) IBOutlet UITextField* securityCodeTextField;
- @property (nonatomic, weak) NSTimer* timer;
- @property (nonatomic, assign) CFTimeInterval endTime;
- @property (nonatomic, weak) UIButton* sendButton;
- @property (nonatomic, assign) NSInteger smsType;
- /*获取验证码**/
- - (void)securityCodeForPrepare:(id)sender;
- - (void)securityCodeForVerify:(id)sender;
- @end
|