1234567891011121314151617181920212223242526272829303132 |
- //
- // YOUPAILZPKDataView.h
- // TIANYAN
- //
- // Created by CY on 2021/6/1.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILZLiveModel.h"
- #import "YOUPAILZLivePKDataAttachment.h"
- #import "LZLiveEnum.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZPKDataView : UIView
- @property (nonatomic, strong) YOUPAILZLiveModel *youpaipmodel;
- @property (nonatomic, strong) YOUPAILZLivePKDataAttachment *youpaipattachment;
- @property (nonatomic, copy) void (^currentPKStateBlock)(LZLivePKState state);
- @property (nonatomic, copy) void (^showDrawBlock)(BOOL show);
- @property (nonatomic, copy) void (^showRePKBlock)(BOOL show);
- @property (nonatomic, assign) BOOL youpaipisStartPK;
- - (instancetype)initWithFrame:(CGRect)frame model:(YOUPAILZLiveModel *)model;
- - (void)youpaifreloadWithAttachment:(YOUPAILZLivePKDataAttachment *)attachment;
- - (void)youpaifstopTimer;
- @end
- NS_ASSUME_NONNULL_END
|