2
0

WFCUMessageCell.h 591 B

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