12345678910111213141516171819202122 |
- //
- // RQWebViewViewController.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/27.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import "RQBaseViewController.h"
- #import "RQWebViewModel.h"
- #import <WebKit/WebKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQWebViewViewController : RQBaseViewController <WKNavigationDelegate, WKUIDelegate, WKScriptMessageHandler>
- /// webView
- @property (nonatomic, weak, readonly) WKWebView *webView;
- /// 内容缩进 (64,0,0,0)
- @property (nonatomic, readonly, assign) UIEdgeInsets contentInset;
- @end
- NS_ASSUME_NONNULL_END
|