猎豆优选

LDAboutViewController.m 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // LDAboutViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/28.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LDAboutViewController.h"
  9. @interface LDAboutViewController ()
  10. @end
  11. @implementation LDAboutViewController
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. [self configNavigationBar];
  15. [self creatSubViews];
  16. }
  17. - (void)configNavigationBar {
  18. self.view.backgroundColor = [UIColor whiteColor];
  19. [self.navigationBar setNavTitle:@"设置"];
  20. self.navigationBar.showNavigationBarBottomLine = YES;
  21. }
  22. - (void)creatSubViews {
  23. }
  24. - (void)didReceiveMemoryWarning {
  25. [super didReceiveMemoryWarning];
  26. // Dispose of any resources that can be recreated.
  27. }
  28. /*
  29. #pragma mark - Navigation
  30. // In a storyboard-based application, you will often want to do a little preparation before navigation
  31. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  32. // Get the new view controller using [segue destinationViewController].
  33. // Pass the selected object to the new view controller.
  34. }
  35. */
  36. @end