RQWebViewViewController.h 565 B

12345678910111213141516171819202122
  1. //
  2. // RQWebViewViewController.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/27.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import "RQBaseViewController.h"
  9. #import "RQWebViewModel.h"
  10. #import <WebKit/WebKit.h>
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface RQWebViewViewController : RQBaseViewController <WKNavigationDelegate, WKUIDelegate, WKScriptMessageHandler>
  13. /// webView
  14. @property (nonatomic, weak, readonly) WKWebView *webView;
  15. /// 内容缩进 (64,0,0,0)
  16. @property (nonatomic, readonly, assign) UIEdgeInsets contentInset;
  17. @end
  18. NS_ASSUME_NONNULL_END