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.
35 lines
678 B
35 lines
678 B
// |
|
// WXYZ_GiftView.h |
|
// WXReader |
|
// |
|
// Created by LL on 2020/5/27. |
|
// Copyright © 2020 Andrew. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
@class TFProductionModel; |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
/// 阅读器礼物视图 |
|
@interface WXYZ_GiftView : UIView |
|
|
|
/// 月票余额返回 |
|
@property (nonatomic, copy) void(^ticketNumBlock)(NSInteger ticketNumber); |
|
|
|
/// 打赏余额返回 |
|
@property (nonatomic, copy) void(^giftNumBlock)(NSInteger giftNumber); |
|
|
|
/// 是否选中月票页面 |
|
@property (nonatomic, assign) BOOL isTicket; |
|
|
|
- (instancetype)initWithFrame:(CGRect)frame bookModel:(TFProductionModel *)bookModel; |
|
|
|
- (void)hide; |
|
|
|
- (void)show; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|