1234567891011121314151617181920 |
- //
- // CTMediator+ASWebView.h
- // Asteria
- //
- // Created by iOS on 2023/6/24.
- //
- #import <CTMediator/CTMediator.h>
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CTMediator (ASWebView)
- /// title: 标题 url: 加载链接
- -(UIViewController *)getWebViewVc:(NSDictionary *)params;
- @end
- NS_ASSUME_NONNULL_END
|