// // Target_WebView.m // Asteria // // Created by iOS on 2023/6/24. // #import "Target_WebView.h" #import "ASWebViewController.h" @implementation Target_WebView /// title: 标题 url: 加载链接 - (UIViewController *)Action_getWebViewVc:(NSDictionary *)params { ASWebViewController *vc = [ASWebViewController new]; vc.customTitle = params[@"title"]; vc.webUrl = params[@"url"]; return vc; } @end