UserLoginAccountViewController.h 472 B

123456789101112131415161718192021
  1. //
  2. // UserLoginAccountViewController.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 UserLoginAccountViewController : BaseViewController
  10. @property (nonatomic, strong) IBOutlet UITextField* accountTextField;
  11. @property (nonatomic, strong) IBOutlet UITextField* passwordTextField;
  12. @property (unsafe_unretained, nonatomic) IBOutlet UIView *accountInputView;
  13. @end