Target_userCenter.m 465 B

12345678910111213141516171819202122
  1. //
  2. // Target_userCenter.m
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/5/16.
  6. //
  7. #import "Target_userCenter.h"
  8. #import "ASUserCenterViewController.h"
  9. @implementation Target_userCenter
  10. - (UIViewController *)Action_getUserCenterVc:(NSDictionary *)params {
  11. ASUserCenterViewController *vc = [[ASUserCenterViewController alloc] init];
  12. return vc;
  13. }
  14. - (Class)Action_userCenterVcClass:(NSDictionary *)params {
  15. return ASUserCenterViewController.class;
  16. }
  17. @end