123456789101112131415161718192021222324252627 |
- //
- // Fuction_Tool.m
- // Asteria
- //
- // Created by 王猛 on 2023/5/22.
- //
- #import "Fuction_Tool.h"
- @implementation Fuction_Tool
- +(void)push_BaseWebUrl:(NSString *)url webTitle:(NSString *)title{
- XXX_BaseWebC *vc = [[XXX_BaseWebC alloc] init];
- [vc xxx_dsWebLoadUrl:url];
- vc.webTitle = title;
- [[Current_normalTool topViewController].navigationController pushViewController:vc animated:true];
- }
- +(void)push_JSBaseWebUrl:(NSString *)url webTitle:(NSString *)title{
- XXX_BaseWebC *vc = [[XXX_BaseWebC alloc] init];
- [vc xxx_dsWebLoadUrl:url];
- vc.webTitle = title;
- [vc tool_dsWebViewAddJS];
- [[Current_normalTool topViewController].navigationController pushViewController:vc animated:true];
- }
- @end
|