PBLiveToolView.h 756 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // PBLiveToolView.h
  3. // PBSDK_Example
  4. //
  5. // Created by hello on 2024/12/25.
  6. // Copyright © 2024 uxiume. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef enum : NSUInteger {
  11. PBLiveToolTtpeFlip = 1,//翻转
  12. PBLiveToolTtpeArticle = 2,//文章
  13. PBLiveToolTtpeSpecific = 3,//特效
  14. PBLiveToolTtpeShare = 4,//特效
  15. PBLiveToolTtpeOther = 999,//特效
  16. } PBLiveToolType;
  17. @interface PBLiveToolItem : NSObject
  18. @property (nonatomic,copy )NSString *image;
  19. @property (nonatomic,copy )NSString *title;
  20. @property (nonatomic,assign)PBLiveToolType type;
  21. @end
  22. @interface PBLiveToolView : UIView
  23. @property (nonatomic,copy )void(^didSelectItemCallBack)(PBLiveToolItem *);
  24. @end
  25. NS_ASSUME_NONNULL_END