CNLiveWebViewModuleImpl.h 1.42 KB
//
//  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