123456789101112131415161718192021 |
- //
- // UserLoginAccountViewController.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/29.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import "BaseViewController.h"
- @interface UserLoginAccountViewController : BaseViewController
- @property (nonatomic, strong) IBOutlet UITextField* accountTextField;
- @property (nonatomic, strong) IBOutlet UITextField* passwordTextField;
- @property (unsafe_unretained, nonatomic) IBOutlet UIView *accountInputView;
- @end
|