You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
504 B

2 years ago
//
// commWebViewController.h
// LekangGuard
//
// Created by ecell on 2023/1/7.
//
#import "BaseViewController.h"
#import <WebKit/WebKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface commWebViewController : BaseViewController
@property (nonatomic, strong) WKWebView *myWebView;
@property (nonatomic, strong) NSString *url;
/**
url
*/
@property (nonatomic, strong) NSString *content;
@property (nonatomic ,strong) NSString *navTitle;
@end
NS_ASSUME_NONNULL_END