12345678910111213141516171819 |
- //
- // PBLiveRoomInputView.h
- // PBSDK
- //
- // Created by LStar on 2025/1/5.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PBLiveRoomInputView : UIView
- ///点击聊天窗口
- @property (nonatomic,copy) void (^clickInput)(PBLiveRoomInputView *inputView);
- @end
- NS_ASSUME_NONNULL_END
|