EMMessageStatusView.h 417 B

1234567891011121314151617181920
  1. //
  2. // EMMessageStatusView.h
  3. // ChatDemo-UI3.0
  4. //
  5. // Created by XieYajie on 2019/1/25.
  6. // Copyright © 2019 XieYajie. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface EMMessageStatusView : UIView
  10. @property (nonatomic, copy) void (^resendCompletion)(void);
  11. - (void)setSenderStatus:(EMMessageStatus)aStatus
  12. isReadAcked:(BOOL)aIsReadAcked
  13. type:(EMChatType)chatType;
  14. @end