CTMediator+UserCenter.m 335 B

12345678910111213141516
  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. @end