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