最近项目中遇到在cell中获取webView的内容的尺寸的需求 实现的思路其实很简单 就是通过执行js 获取尺寸即可 为了后面用着方便我直接封装了一个HTML的cell 起名就叫
STHTMLBaseCell 下面是实现代码:
#import STBaseTableViewCell.h@class STHTMLBaseCell;
@protocol STHtmlBaseDelegate <NSObject>
- (void)webViewDidLoad:(STHTMLBaseCell *)cell height:(CGFloat)height;
@end
@interface STH