1234567891011121314151617181920 |
- //
- // CTMediator+UserCenter.m
- // Asteria
- //
- // Created by iOS on 2023/6/5.
- //
- #import "CTMediator+UserCenter.h"
- @implementation CTMediator (UserCenter)
- -(UIViewController *)getUserCenterVc:(NSDictionary *)params{
- return [self performTarget:@"userCenter" action:@"getUserCenterVc" params:params shouldCacheTarget:NO];
- }
- -(Class)userCenterVcClass {
- return [self performTarget:@"userCenter" action:@"userCenterVcClass" params:@{} shouldCacheTarget:NO];
- }
- @end
|