OrderPayVCList.m 851 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // OrderPayVCList.m
  3. // LN_School
  4. //
  5. // Created by EchoShacolee on 2017/4/21.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import "OrderPayVCList.h"
  9. #import "OrderPayListCell.h"
  10. @interface OrderPayVCList ()
  11. @end
  12. @implementation OrderPayVCList
  13. - (void)viewDidLoad {
  14. [super viewDidLoad];
  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