12345678910111213141516171819202122232425 |
- //
- // UserForgetPasswordViewController.m
- // XenonSDK
- //
- // Created by fq on 2020/12/12.
- // Copyright © 2020 SAGESSE. All rights reserved.
- //
- #import "UserForgetPasswordViewController.h"
- @interface UserForgetPasswordViewController ()
- @end
- @implementation UserForgetPasswordViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view from its nib.
-
- self.view.backgroundColor = [UIColor whiteColor];
-
- }
- @end
|