1234567891011121314151617181920 |
- //
- // EMMessageStatusView.h
- // ChatDemo-UI3.0
- //
- // Created by XieYajie on 2019/1/25.
- // Copyright © 2019 XieYajie. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface EMMessageStatusView : UIView
- @property (nonatomic, copy) void (^resendCompletion)(void);
- - (void)setSenderStatus:(EMMessageStatus)aStatus
- isReadAcked:(BOOL)aIsReadAcked
- type:(EMChatType)chatType;
- @end
|