// // WkWebViewViewController.h // Lighting // // Created by 曹云霄 on 2016/11/24. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import "BaseViewController.h" typedef void(^ReturnContentHeight)(CGFloat height); @interface WkWebViewViewController : BaseViewController @property (nonatomic,strong) UIWebView *contentWebView; @property (nonatomic,copy) ReturnContentHeight contentHeight; @property (nonatomic,copy) NSString *htmlString; /** 初始化 @param htmlString HTML字符串 @param block 返回content Height */ - (instancetype)initWithReturnContentSize:(void(^)(CGFloat contentHeight))block; @end