UserForgetPasswordViewController.m 484 B

12345678910111213141516171819202122232425
  1. //
  2. // UserForgetPasswordViewController.m
  3. // XenonSDK
  4. //
  5. // Created by fq on 2020/12/12.
  6. // Copyright © 2020 SAGESSE. All rights reserved.
  7. //
  8. #import "UserForgetPasswordViewController.h"
  9. @interface UserForgetPasswordViewController ()
  10. @end
  11. @implementation UserForgetPasswordViewController
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. // Do any additional setup after loading the view from its nib.
  15. self.view.backgroundColor = [UIColor whiteColor];
  16. }
  17. @end