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.
35 lines
590 B
35 lines
590 B
1 year ago
|
//
|
||
|
// WebViewController.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by weichao on 2019/03/01.
|
||
|
// Copyright © 2019年 weichao. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "baseViewController.h"
|
||
|
#import <WebKit/WebKit.h>
|
||
|
#import "MJRefresh.h"
|
||
|
|
||
|
|
||
|
@interface ActivityWebViewController : baseViewController
|
||
|
|
||
|
@property (nonatomic, strong) WKWebView *myWebView;
|
||
|
|
||
|
@property (nonatomic, strong) NSString *url;
|
||
|
|
||
|
/**
|
||
|
是否显示返回按钮
|
||
|
*/
|
||
|
@property (nonatomic, assign) BOOL isShowBack;
|
||
|
|
||
|
/**
|
||
|
内容 如果为空的时候加载 url
|
||
|
*/
|
||
|
@property (nonatomic, strong) NSString *content;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
@end
|