| 1234567891011121314151617181920212223 |
- //
- // YBChatToolBar.h
- // YBVideo
- //
- // Created by YB007 on 2019/11/30.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^ChatToolBlock)(NSString *eventType,NSString *eventContent);
- @interface YBChatToolBar : UIView
- @property(nonatomic,copy)ChatToolBlock chatToolEvnt;
- @property(nonatomic,strong)UITextField *chatTF;
- @end
|