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

//
// 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