Files
Novel/XiaoShuoHui/TFReader/Classes/BookStore(书城)/Comic(漫画)/View/TFBookStoreComicBasicItemCell.h
T
2021-02-07 11:24:08 +08:00

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