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
641 B
35 lines
641 B
1 year ago
|
//
|
||
|
// WebViewController.h
|
||
|
// watch
|
||
|
//
|
||
|
// Created by xTT on 2017/9/3.
|
||
|
// Copyright © 2017年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "baseViewController.h"
|
||
|
#import <WebKit/WebKit.h>
|
||
|
|
||
|
|
||
|
@interface WebViewController : baseViewController
|
||
|
|
||
|
@property (nonatomic, strong) WKWebView *myWebView;
|
||
|
|
||
|
@property (nonatomic, strong) NSString *url;
|
||
|
|
||
|
/**
|
||
|
内容 如果为空的时候加载 url
|
||
|
*/
|
||
|
@property (nonatomic, strong) NSString *content;
|
||
|
|
||
|
|
||
|
/**
|
||
|
是否隐藏导航栏
|
||
|
*/
|
||
|
@property (nonatomic, assign) BOOL isHiddenNavigationBar;
|
||
|
|
||
|
/// 是否显示更多操作
|
||
|
@property (nonatomic, assign) BOOL isShowMoreOperations;
|
||
|
|
||
|
@end
|