2
0

WFCUMessageCell.h 694 B

123456789101112131415161718192021
  1. //
  2. // MessageCell.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/9/1.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "WFCUMessageCellBase.h"
  10. @interface WFCUMessageCell : WFCUMessageCellBase
  11. + (CGSize)sizeForClientArea:(WFCUMessageModel *)msgModel withViewWidth:(CGFloat)width;
  12. @property (nonatomic, strong)UIImageView *portraitView;
  13. @property (nonatomic, strong)UILabel *nameLabel;
  14. @property (nonatomic, strong)UIImageView *bubbleView;
  15. @property (nonatomic, strong)UIView *contentArea;
  16. @property (nonatomic, strong)UIView *quoteContainer;
  17. @property (nonatomic, strong)UILabel *quoteLabel;
  18. - (void)setMaskImage:(UIImage *)maskImage;
  19. @end