Cart_CheckoutC.m 581 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // Cart_CheckoutC.m
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2024/2/16.
  6. //
  7. #import "Cart_CheckoutC.h"
  8. #import "CartCheckTableV.h"
  9. @interface Cart_CheckoutC ()
  10. @property (nonatomic, strong) CartCheckTableV *TableV;
  11. @end
  12. @implementation Cart_CheckoutC
  13. - (void)viewDidLoad {
  14. [super viewDidLoad];
  15. self.title = @"Checkout";
  16. }
  17. - (void)initSubviews {
  18. [super initSubviews];
  19. IPhoneXHeigh
  20. [self setupTableV:[CartCheckTableV class] Frame:CGRectMake(0, securitytop_Y , KScreenWidth, security_H)];
  21. }
  22. #pragma mark - **************** reqNet ****************
  23. @end