You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
985 B
33 lines
985 B
// |
|
// ChatPresenter.h |
|
// myWatch |
|
// |
|
// Created by xTT on 16/7/5. |
|
// Copyright © 2016年 xTT. All rights reserved. |
|
// |
|
|
|
#import "BasePresenter.h" |
|
|
|
#import "XHMessage.h" |
|
|
|
@interface ChatPresenter : BasePresenter |
|
|
|
@property (assign ,nonatomic) BOOL isSended; |
|
|
|
- (void)P_initData:(void(^)())block; |
|
|
|
- (void)P_getFamilyMessageRecv:(NSString *)messageid block:(void(^)(NSMutableArray *messageArr))block; |
|
|
|
- (void)P_getSingleFamilyMessageRecv:(NSString *)imei |
|
page:(NSInteger)page |
|
block:(void(^)(NSMutableArray *messageArr))block; |
|
|
|
- (void)P_getFamilyMessageLastMsg:(NSString *)lastMsgid |
|
block:(void(^)(NSMutableArray *messageArr))block; |
|
|
|
- (void)P_playVoiceWithMessage:(XHMessage *)message block:(void(^)(NSString *wavPath))block; |
|
|
|
- (void)P_didSelectedAvatarOnMessage:(XHMessage *)message atIndexPath:(NSIndexPath *)indexPath |
|
block:(BlockPerformSegue)block; |
|
|
|
@end
|
|
|