YBLiveChatView.h 542 B

1234567891011121314151617181920212223242526
  1. //
  2. // YBLiveChatView.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2019/11/30.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #define ChatViewWidth _window_width*0.75 - 15
  10. #define ChatViewHeight _window_height*0.3
  11. typedef void (^LiveChatBlock)(NSString *eventStr,NSDictionary *eventDic);
  12. @interface YBLiveChatView : UIView
  13. @property(nonatomic,copy)LiveChatBlock liveChatEvent;
  14. //刷新消息
  15. -(void)reloadMsg:(NSDictionary *)dic;
  16. /** 切换房间清理上个房间的聊天记录 */
  17. -(void)clearChatList;
  18. @end