32 lines
879 B
Objective-C
32 lines
879 B
Objective-C
//
|
|
// TFBookStoreComicBasicItemCell.h
|
|
// TFReader
|
|
//
|
|
// Created by 谢腾飞 on 2020/12/16.
|
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "TFProductionCoverView.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
#define Comic_MaxCross_Geometric_Height(x) (((5 * x) / 9))
|
|
#define Comic_MiddleCross_Geometric_Height(x) (((2 * x) / 3))
|
|
#define Comic_Normal_Geometric_Height(x) (((4 * x) / 3))
|
|
#define Comic_Cell_Title_Height 40
|
|
#define Comic_Cell_Line_Space 3.0f
|
|
|
|
@interface TFBookStoreComicBasicItemCell : UICollectionViewCell
|
|
|
|
@property (nonatomic ,strong) TFProductionModel *productionModel;
|
|
@property (nonatomic ,strong) TFProductionCoverView *comicCoverView;
|
|
@property (nonatomic ,strong) UILabel *titileLabel;
|
|
@property (nonatomic ,strong) UILabel *describeLabel;
|
|
|
|
- (void)createSubViews;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|