// // CommonEditorWebCell.h // RedAnt Mobile // // Created by Jack on 2017/11/17. // Copyright © 2017年 Ray. All rights reserved. // #import #import @class CommonEditorWebCell; @protocol CommonEditorWebCellDelegate - (void)commonEditorWebCell:(CommonEditorWebCell *)cell didChangeContentHeight:(CGFloat)contentHeight; @end @interface CommonEditorWebCell : UITableViewCell @property (nonatomic,weak) id webDelegate; @property (strong, nonatomic) IBOutlet WKWebView *webview; @property (weak, nonatomic) IBOutlet UILabel *htmlLabel; @end