YBChatToolBar.h 374 B

1234567891011121314151617181920212223
  1. //
  2. // YBChatToolBar.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. typedef void (^ChatToolBlock)(NSString *eventType,NSString *eventContent);
  10. @interface YBChatToolBar : UIView
  11. @property(nonatomic,copy)ChatToolBlock chatToolEvnt;
  12. @property(nonatomic,strong)UITextField *chatTF;
  13. @end