12345678910111213141516171819202122232425262728293031323334 |
- //
- // RQWebViewViewController.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/27.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <WebKit/WebKit.h>
- typedef NS_ENUM(NSUInteger, WebType) {
- WebTypeDefault = 0,
- WebTypeEDU = 1,
- WebTypeStuProtocol = 2,
- WebTypeStuLearnBook = 3,
- };
- @interface RQWebViewViewController : UIViewController <WKNavigationDelegate, WKUIDelegate, WKScriptMessageHandler>
- /// webView
- @property (nonatomic, weak, readonly) WKWebView *webView;
- /// 内容缩进 (64,0,0,0)
- @property (nonatomic, readonly, assign) UIEdgeInsets contentInset;
- @property (nonatomic, readwrite, strong) NSString *url;
- @property (nonatomic, readwrite, strong) NSString *titleStr;
- @property (nonatomic, readwrite, strong) NSString *countStr;
- @property (assign, readwrite, nonatomic) WebType webType;
- @end
|