BGLoginView.h 698 B

123456789101112131415161718192021222324252627
  1. //
  2. // BGLoginView.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/12/10.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ULGView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BGLoginView : UIView
  12. @property(nonatomic, copy) void (^clickLoginBlock)(NSInteger i);
  13. @property(nonatomic, copy) void (^clickVistorBlock)(BOOL isClickVistoers);
  14. @property(nonatomic, copy) void (^clickReigsterBlock)(BOOL clickRegister);
  15. @property(nonatomic, copy) void (^clickForgetPWBlock)(BOOL clickForget);
  16. @property(nonatomic, strong) UIButton *codeBtn;
  17. @property(nonatomic, strong) UITextField *phoneText;
  18. @property(nonatomic, strong) UITextField *codeText;
  19. @end
  20. NS_ASSUME_NONNULL_END