CTMediator+ASTargerts.m 847 B

12345678910111213141516171819202122232425262728293031
  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. -(UIViewController *)getUserCenterVc:(NSDictionary *)params{
  19. return [self performTarget:@"userCenter" action:@"getUserCenterVc" params:params shouldCacheTarget:NO];
  20. }
  21. @end