CTMediator+UserCenter.m 473 B

1234567891011121314151617181920
  1. //
  2. // CTMediator+UserCenter.m
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/5.
  6. //
  7. #import "CTMediator+UserCenter.h"
  8. @implementation CTMediator (UserCenter)
  9. -(UIViewController *)getUserCenterVc:(NSDictionary *)params{
  10. return [self performTarget:@"userCenter" action:@"getUserCenterVc" params:params shouldCacheTarget:NO];
  11. }
  12. -(Class)userCenterVcClass {
  13. return [self performTarget:@"userCenter" action:@"userCenterVcClass" params:@{} shouldCacheTarget:NO];
  14. }
  15. @end