// // WebViewController.h // watch // // Created by xTT on 2017/9/3. // Copyright © 2017年 xTT. All rights reserved. // #import #import "baseViewController.h" #import @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