12345678910111213141516171819 |
- #import <UIKit/UIKit.h>
- #import "WFCUMessageCellBase.h"
- @interface WFCUMessageCell : WFCUMessageCellBase
- + (CGSize)sizeForClientArea:(WFCUMessageModel *)msgModel withViewWidth:(CGFloat)width;
- @property (nonatomic, strong)UIImageView *portraitView;
- @property (nonatomic, strong)UILabel *nameLabel;
- @property (nonatomic, strong)UIImageView *bubbleView;
- @property (nonatomic, strong)UIView *contentArea;
- - (void)setMaskImage:(UIImage *)maskImage;
- @end
|