Target_Home.m 315 B

123456789101112131415161718
  1. //
  2. // Target_Home.m
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/5.
  6. //
  7. #import "Target_Home.h"
  8. #import "ASHomeViewController.h"
  9. @implementation Target_Home
  10. - (UIViewController *)Action_getHomeVc:(NSDictionary *)params {
  11. ASHomeViewController *vc = [[ASHomeViewController alloc] init];
  12. return vc;
  13. }
  14. @end