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.
24 lines
500 B
24 lines
500 B
// |
|
// WXYZ_BookFrontCoverView.h |
|
// WXReader |
|
// |
|
// Created by LL on 2020/5/23. |
|
// Copyright © 2020 Andrew. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
@class TFReaderSettingHelper; |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
/// 书籍第一章第一页的封面 |
|
@interface WXYZ_BookFrontCoverView : UIView |
|
|
|
- (instancetype)initWithFrame:(CGRect)frame |
|
bookModel:(TFProductionModel *)bookModel |
|
readerSetting:(TFReaderSettingHelper *)readerSetting; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|