CNLiveWebViewModuleImpl.h
1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// CNLiveWebViewModuleImpl.h
// CNLiveCWebViewModule_Example
//
// Created by open on 2021/1/15.
// Copyright © 2021 woshiliushiyu. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CNLiveCWebViewModule/CNLiveCWebViewModule.h>
#import <CNLiveCWebViewModule/CNLiveWebViewModuleHeader.h>
NS_ASSUME_NONNULL_BEGIN
@interface CNLiveWebViewModuleImpl : NSObject<CNLiveWebViewModuleProtocol>
/// 跳转 CNBellwethersWebviewController 领头雁专用课题webView继承问题修改
/// @param title 标题
+(UIViewController * )pushClassifyWebViewWithWebTitle:(nullable NSString *)title
url:(nullable NSString *)url
intercept:(BOOL)intercept
isHiddenFirst:(BOOL)isHiddenFirst
isBlack:(BOOL)isBlack;
/// 跳转
/// @param type 1 返回需要有控制器的(界面暂时需要老webVC,暂时发现为直播预约界面)
///
/// 0 直接返回界面界面进行跳转
+(UIViewController *)pushDarenWebViewWithWebType:(NSInteger)type
webUrl:(NSString *)url
title:(NSString *)title
statUrl:(nullable NSString *)statUrl
shareType:(nullable NSString *)shareType;
@end
NS_ASSUME_NONNULL_END