You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
758 B
39 lines
758 B
// |
|
// WXYZ_GiftRewardView.h |
|
// WXReader |
|
// |
|
// Created by LL on 2020/5/28. |
|
// Copyright © 2020 Andrew. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
@class WXYZ_GiftView; |
|
|
|
@class WXYZ_GiftRewardListModel; |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface WXYZ_GiftRewardView : UIView |
|
|
|
@property (nonatomic, weak) WXYZ_GiftView *giftView; |
|
|
|
@property (nonatomic, strong) TFProductionModel *bookModel; |
|
|
|
/// 打赏余额返回 |
|
@property (nonatomic, copy) void(^giftNumBlock)(NSInteger giftNumber); |
|
|
|
- (instancetype)initWithBookModel:(TFProductionModel *)bookModel; |
|
|
|
@end |
|
|
|
|
|
@interface WXYZ_GiftRewardCell : UICollectionViewCell |
|
|
|
@property (nonatomic, strong) WXYZ_GiftRewardListModel *giftRewardModel; |
|
|
|
- (void)setSelected:(BOOL)selected; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|