// // RQCustomWebViewViewController.h // RQCommon // // Created by 张嵘 on 2018/11/27. // Copyright © 2018 张嵘. All rights reserved. // #import #import typedef NS_ENUM(NSUInteger, WebType) { WebTypeDefault = 0, WebTypeEDU = 1, WebTypeStuProtocol = 2, WebTypeAd = 3, }; @interface RQCustomWebViewViewController : UIViewController /// 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, copy) NSArray *bodyDicArr; @property (assign, readwrite, nonatomic) WebType webType; @end