PLVWebViewBaseViewController
Objective-C
@interface PLVWebViewBaseViewController : UIViewController<
PLVFloatableWebViewBridgeDelegate
>
/// WebView 容器,负责小窗或正常页面显示
@property (nonatomic, strong, readonly) PLVContentAreaView *contentAreaView;
- (instancetype)initWithConfig:(PLVWebViewConfig *)config;
/// 初始化阶段,可进行自定义配置
- (void)initHandleForDemo;
@end
Swift
class PLVWebViewBaseViewController : PLVFloatableWebViewBridgeDelegate
Undocumented
-
WebView 容器,负责小窗或正常页面显示
Declaration
Objective-C
@property (nonatomic, strong, readonly) PLVContentAreaView *_Nonnull contentAreaView;
Swift
var contentAreaView: PLVContentAreaView { get }
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithConfig:(PLVWebViewConfig *)config;
Swift
init(config: PLVWebViewConfig)
-
初始化阶段,可进行自定义配置
Declaration
Objective-C
- (void)initHandleForDemo;
Swift
func initHandleForDemo()