WFCCStickerMessageContent.h 482 B

1234567891011121314151617181920212223242526
  1. //
  2. // WFCCImageMessageContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/2.
  6. // Copyright © 2017年 wildfire chat. All rights reserved.
  7. //
  8. #import "WFCCMediaMessageContent.h"
  9. #import <UIKit/UIKit.h>
  10. /**
  11. 图片消息
  12. */
  13. @interface WFCCStickerMessageContent : WFCCMediaMessageContent
  14. /**
  15. 构造方法
  16. @param stickerPath 表情路径
  17. @return 表情消息
  18. */
  19. + (instancetype)contentFrom:(NSString *)stickerPath;
  20. @property (nonatomic, assign)CGSize size;
  21. @end