12345678910111213141516171819202122232425262728293031 |
- //
- // CTMediator+ASTargerts.m
- // Asteria
- //
- // Created by 王猛 on 2023/5/17.
- //
- #import "CTMediator+ASTargerts.h"
- @implementation CTMediator (ASTargerts)
- -(UIViewController *)B_viewControllerWithContentText:(NSDictionary *)params{
- return [self performTarget:@"B" action:@"viewController" params:params shouldCacheTarget:NO];
- }
- -(UIViewController *)Goods_GoodsDetaileC:(NSDictionary *)params{
- return [self performTarget:@"Goods" action:@"GoodsDetaileC" params:params shouldCacheTarget:NO];
- }
- -(UIViewController *)Login_LoginC:(NSDictionary *)params{
- return [self performTarget:@"Login" action:@"AS_LoginC" params:params shouldCacheTarget:NO];
- }
- -(UIViewController *)getUserCenterVc:(NSDictionary *)params{
- return [self performTarget:@"userCenter" action:@"getUserCenterVc" params:params shouldCacheTarget:NO];
- }
- @end
|