JCHATSendMsgManager.h 738 B

12345678910111213141516171819
  1. //
  2. // JCHATSendMsgManager.h
  3. // JChat
  4. //
  5. // Created by HuminiOS on 15/10/30.
  6. // Copyright © 2015年 HXHG. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface JCHATSendMsgManager : NSObject
  10. @property(strong, nonatomic)NSMutableDictionary *sendMsgListDic;//发送缓存的消息字典,暂时只有在是发送图片会用到
  11. @property(strong, nonatomic)NSMutableDictionary *textDraftDic;//未发送 的草稿文字
  12. - (void)addMessage:(JMSGMessage *)imgMsg withConversation:(JMSGConversation *)conversation;
  13. - (void)updateConversation:(JMSGConversation *)conversation withDraft:(NSString *)draftString;
  14. - (NSString *)draftStringWithConversation:(JMSGConversation *)conversation;
  15. + (JCHATSendMsgManager *)ins;
  16. @end