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