CTMediator+ASWebView.m 364 B

123456789101112131415161718
  1. //
  2. // CTMediator+ASWebView.m
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/24.
  6. //
  7. #import "CTMediator+ASWebView.h"
  8. @implementation CTMediator (ASWebView)
  9. /// title: 标题 url: 加载链接
  10. -(UIViewController *)getWebViewVc:(NSDictionary *)params{
  11. return [self performTarget:@"WebView" action:@"getWebViewVc" params:params shouldCacheTarget:NO];
  12. }
  13. @end