1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // PBLiveToolView.h
- // PBSDK_Example
- //
- // Created by hello on 2024/12/25.
- // Copyright © 2024 uxiume. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- 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
|