UserLoginPhoneViewController.h 763 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // UserLoginPhoneViewController.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/29.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import "BasePhoneViewController.h"
  9. @interface UserLoginPhoneViewController : BasePhoneViewController
  10. @property (unsafe_unretained, nonatomic) IBOutlet UIView *thirdLoginView1;
  11. @property (unsafe_unretained, nonatomic) IBOutlet UIButton *appleLoginBtn;
  12. - (void)automatic:(id)phone;
  13. //游客登录信息界面.
  14. @property (unsafe_unretained, nonatomic) IBOutlet UIView *fastView;
  15. @property (unsafe_unretained, nonatomic) IBOutlet UILabel *userLabel;
  16. @property (unsafe_unretained, nonatomic) IBOutlet UILabel *pwdLabel;
  17. //勾选框
  18. @property (unsafe_unretained, nonatomic) IBOutlet UIButton *selectBtn;
  19. @end