MGLoginView.h 919 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // MGLoginView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/7/16.
  6. // Copyright © 2019年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MGLoginView : UIView
  11. @property(nonatomic, strong) UIButton *loginBtn;
  12. @property(nonatomic, strong) UIButton *wxLoginBtn;
  13. @property(nonatomic, strong) UIButton *infoBtn;
  14. @property(nonatomic, strong) UIButton *codeBtn;
  15. @property(nonatomic, strong) UITextField *phoneText;
  16. @property(nonatomic, strong) UITextField *codeText;
  17. @property(nonatomic, copy) void (^clickLoginBlock)(NSInteger i);
  18. @property(nonatomic, strong) UIImageView *bgImgView;
  19. @property(nonatomic, strong) UILabel *otherL;
  20. @property(nonatomic, strong) UIView *loginView;
  21. @property(nonatomic, strong) QMUIButton *wxBtn;
  22. @property(nonatomic, strong) QMUIButton *qqBtn;
  23. @property(nonatomic, strong) NSMutableArray *loginArr;
  24. @end
  25. NS_ASSUME_NONNULL_END