CNLiveInteractionWebController.h
796 Bytes
//
// CNLiveInteractionWebController.h
// CNLiveBaseClass
//
// Created by CNLive-zxw on 2019/12/14.
// Copyright © 2019 153993236@qq.com. All rights reserved.
//
/*
* 有交互的WebView
*/
#import "CNLiveBaseWebViewController.h"
NS_ASSUME_NONNULL_BEGIN
@class WKWebViewJavascriptBridge;
@interface CNLiveInteractionWebController : CNLiveBaseWebViewController
@property (nonatomic, strong) WKWebViewJavascriptBridge *bridge;
/*
注意:初始化方法
- (instancetype)initWithUrl:(NSString *)url;
- (instancetype)initWithUrl:(NSString *)url title:(nullable NSString *)title;
- (instancetype)initWithUrl:(NSString *)url title:(nullable NSString *)title closeHidden:(BOOL)closeHidden;
*/
/*
* 子类重写添加交互方法
*/
- (void)interaction;
@end
NS_ASSUME_NONNULL_END