ViewForPhoneAndSMS.h 886 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // ViewForPhoneAndSMS.h
  3. // VclustersGemini
  4. //
  5. // Created by APPLE on 2020/4/8.
  6. // Copyright © 2020 APPLE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "InputViewForSMSCod.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol ViewForPhoneAndSMSDelegate <NSObject>
  12. - (void)smsDeleteBtnPressed;
  13. - (void)smsOptionalBtnPressed; //用户使用协议
  14. - (void)smsPrivateBtnPressed; //用户隐私协议
  15. - (void)smsLoginWithPhonenumber:(NSString *)number code:(NSString *)code;
  16. - (void)smsGetLoginSmsCodeWithPhonenumber:(NSString *)number;
  17. - (void)smsPwdLoginBtnBePressed;
  18. - (void)viewForPhoneAndSMSWeixinLogin;
  19. @end
  20. @interface ViewForPhoneAndSMS : UIView
  21. @property (nonatomic,weak)id<ViewForPhoneAndSMSDelegate> delegate;
  22. @property (nonatomic,strong)InputViewForSMSCod *mInputView;
  23. - (void)hiddenKeyboard;
  24. -(BOOL)agreementButtonIsSelect;
  25. - (void)refreshUI;
  26. @end
  27. NS_ASSUME_NONNULL_END