Target_Cart.m 294 B

12345678910111213141516
  1. //
  2. // Target_Cart.m
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2024/1/29.
  6. //
  7. #import "Target_Cart.h"
  8. #import "Cart_MyCartC.h"
  9. @implementation Target_Cart
  10. - (UIViewController *)Action_Cart_MyCartC:(NSDictionary *)params{
  11. Cart_MyCartC *vc = [[Cart_MyCartC alloc]init];
  12. return vc;
  13. }
  14. @end