12345678910111213141516171819202122 |
- //
- // WKWebViewVC.h
- // PoliceHome
- //
- // Created by 刘惠萍 on 2020/12/15.
- // Copyright © 2020 刘惠萍. All rights reserved.
- //
- #import "BaseVC.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface WKWebViewVC : BaseVC
- @property (strong, nonatomic) NSString *htmlString;
- @property (nonatomic, assign) BOOL isH5;
- @property (nonatomic, assign) BOOL isNav;
- @property (strong, nonatomic) NSString *navStr;
- @property (nonatomic, assign) BOOL isHight;
- @end
- NS_ASSUME_NONNULL_END
|