AboutViewController.m 879 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // AboutViewController.m
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2017/12/7.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import "AboutViewController.h"
  9. @interface AboutViewController ()
  10. @end
  11. @implementation AboutViewController
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. [self setNavTitle:@"服务协议"];
  15. // Do any additional setup after loading the view.
  16. }
  17. - (void)didReceiveMemoryWarning {
  18. [super didReceiveMemoryWarning];
  19. // Dispose of any resources that can be recreated.
  20. }
  21. /*
  22. #pragma mark - Navigation
  23. // In a storyboard-based application, you will often want to do a little preparation before navigation
  24. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  25. // Get the new view controller using [segue destinationViewController].
  26. // Pass the selected object to the new view controller.
  27. }
  28. */
  29. @end