口袋优选

KBMyOrderViewController.m 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // KBMyOrderViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/29.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "KBMyOrderViewController.h"
  9. #import <AlibcTradeSDK/AlibcTradeSDK.h>
  10. @interface KBMyOrderViewController ()
  11. @end
  12. @implementation KBMyOrderViewController
  13. - (instancetype)init {
  14. self = [super init];
  15. if (self) {
  16. self.openPage = AlibcOpenPageMyOrder;
  17. }
  18. return self;
  19. }
  20. - (void)viewDidLoad {
  21. [super viewDidLoad];
  22. [self.navigationBar setNavTitle:@"我的订单"];
  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