// // PBLiveToolView.h // PBSDK_Example // // Created by hello on 2024/12/25. // Copyright © 2024 uxiume. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN typedef enum : NSUInteger { PBLiveToolTtpeFlip = 1,//翻转 PBLiveToolTtpeArticle = 2,//文章 PBLiveToolTtpeSpecific = 3,//特效 PBLiveToolTtpeShare = 4,//特效 PBLiveToolTtpeOther = 999,//特效 } PBLiveToolType; @interface PBLiveToolItem : NSObject @property (nonatomic,copy )NSString *image; @property (nonatomic,copy )NSString *title; @property (nonatomic,assign)PBLiveToolType type; @end @interface PBLiveToolView : UIView @property (nonatomic,copy )void(^didSelectItemCallBack)(PBLiveToolItem *); @end NS_ASSUME_NONNULL_END