BasePhoneViewController.h 758 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // BasePhoneViewController.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/29.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. @interface BasePhoneViewController : BaseViewController
  10. @property (nonatomic, strong) IBOutlet UITextField* phoneTextField;
  11. @property (nonatomic, strong) IBOutlet UIButton* securityCodeButton;
  12. @property (nonatomic, strong) IBOutlet UITextField* securityCodeTextField;
  13. @property (nonatomic, weak) NSTimer* timer;
  14. @property (nonatomic, assign) CFTimeInterval endTime;
  15. @property (nonatomic, weak) UIButton* sendButton;
  16. @property (nonatomic, assign) NSInteger smsType;
  17. /*获取验证码**/
  18. - (void)securityCodeForPrepare:(id)sender;
  19. - (void)securityCodeForVerify:(id)sender;
  20. @end