口袋优选

KBBrandMainViewController.m 863B

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