WFCUMessageCell.h 641 B

1234567891011121314151617181920
  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)UILabel *quoteLabel;
  17. - (void)setMaskImage:(UIImage *)maskImage;
  18. @end