PBLiveRoomToolView.h 670 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // PBLiveRoomToolView.h
  3. // PBSDK
  4. //
  5. // Created by xx on 2024/12/26.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef enum : NSUInteger {
  10. PBLiveRoomToolTypeCamera = 1,//
  11. PBLiveRoomToolTypeLive = 2,//
  12. PBLiveRoomToolTypeDecorate = 3,//
  13. PBLiveRoomToolTypeMore = 999,//
  14. } PBLiveRoomToolType;
  15. @interface PBLiveRoomToolItem : NSObject
  16. @property (nonatomic,copy )NSString *image;
  17. @property (nonatomic,copy )NSString *title;
  18. @property (nonatomic,assign)PBLiveRoomToolType type;
  19. @end
  20. @interface PBLiveRoomToolView : UIView
  21. @property (nonatomic,copy )void(^didSelectItemCallBack)(PBLiveRoomToolItem *);
  22. @end
  23. NS_ASSUME_NONNULL_END