WFCFavoriteBaseCell.h 615 B

12345678910111213141516171819202122232425
  1. //
  2. // WFCFavoriteBaseCell.h
  3. // WildFireChat
  4. //
  5. // Created by Tom Lee on 2020/11/1.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <WFChatUIKit/WFChatUIKit.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface WFCFavoriteBaseCell : UITableViewCell
  12. @property(nonatomic, strong)WFCUFavoriteItem *favoriteItem;
  13. @property(nonatomic, strong)UIView *contentArea;
  14. //子类实现,必须重新返回内容区高度
  15. + (CGFloat)contentHeight:(WFCUFavoriteItem *)favoriteItem;
  16. //基类实现,不能重写
  17. + (CGFloat)heightOf:(WFCUFavoriteItem *)favoriteItem;
  18. @end
  19. NS_ASSUME_NONNULL_END