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