12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // LDAboutViewController.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/28.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LDAboutViewController.h"
- @interface LDAboutViewController ()
- @end
- @implementation LDAboutViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
-
- [self configNavigationBar];
- [self creatSubViews];
- }
- - (void)configNavigationBar {
-
- self.view.backgroundColor = [UIColor whiteColor];
- [self.navigationBar setNavTitle:@"设置"];
- self.navigationBar.showNavigationBarBottomLine = YES;
- }
- - (void)creatSubViews {
-
-
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- @end
|