CTMediator+ASTargerts.m 856 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // CTMediator+ASTargerts.m
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2023/5/17.
  6. //
  7. #import "CTMediator+ASTargerts.h"
  8. @implementation CTMediator (ASTargerts)
  9. -(UIViewController *)B_viewControllerWithContentText:(NSDictionary *)params{
  10. return [self performTarget:@"B" action:@"viewController" params:params shouldCacheTarget:NO];
  11. }
  12. -(UIViewController *)Goods_GoodsDetaileC:(NSDictionary *)params{
  13. return [self performTarget:@"Goods" action:@"GoodsDetaileC" params:params shouldCacheTarget:NO];
  14. }
  15. -(UIViewController *)Login_LoginC:(NSDictionary *)params{
  16. return [self performTarget:@"Login" action:@"AS_LoginC" params:params shouldCacheTarget:NO];
  17. }
  18. #warning TODO 修改
  19. -(UIViewController *)getUserCenterVc:(NSDictionary *)params{
  20. return [self performTarget:@"B" action:@"viewController" params:params shouldCacheTarget:NO];
  21. }
  22. @end