CommonEditorWebCell.h 597 B

123456789101112131415161718192021222324
  1. //
  2. // CommonEditorWebCell.h
  3. // RedAnt Mobile
  4. //
  5. // Created by Jack on 2017/11/17.
  6. // Copyright © 2017年 Ray. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class CommonEditorWebCell;
  10. @protocol CommonEditorWebCellDelegate <NSObject>
  11. - (void)commonEditorWebCell:(CommonEditorWebCell *)cell didChangeContentHeight:(CGFloat)contentHeight;
  12. @end
  13. @interface CommonEditorWebCell : UITableViewCell
  14. @property (nonatomic,weak) id<CommonEditorWebCellDelegate> webDelegate;
  15. @property (strong, nonatomic) IBOutlet UIWebView *webview;
  16. @property (weak, nonatomic) IBOutlet UILabel *htmlLabel;
  17. @end