CNLiveBaseWebViewController.h 739 Bytes
//
//  CNLiveBaseWebViewController.h
//  CNLiveBaseClass
//
//  Created by CNLive-zxw on 2019/12/7.
//  Copyright © 2019 153993236@qq.com. All rights reserved.
//

/*
 * 没有交互的WebView
 */

#import "CNLiveBaseViewController.h"

NS_ASSUME_NONNULL_BEGIN
@class CNLiveWebView;

@interface CNLiveBaseWebViewController : CNLiveBaseViewController
@property (nonatomic, strong) CNLiveWebView *webView;

- (instancetype)initWithUrl:(NSString *)url;
- (instancetype)initWithUrl:(NSString *)url title:(nullable NSString *)title;
- (instancetype)initWithUrl:(NSString *)url title:(nullable NSString *)title closeHidden:(BOOL)closeHidden;

- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;

@end

NS_ASSUME_NONNULL_END