12345678910111213141516171819202122232425 |
- //
- // HomeBigshotCollectCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/5/20.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HomeSubItemModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeBigshotCollectCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imagV;
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
- @property (weak, nonatomic) IBOutlet UIImageView *yanV;
- @property (weak, nonatomic) IBOutlet UILabel *countL;
- @property (weak, nonatomic) IBOutlet UILabel *timeL;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *yanContant;
- - (void)setDataModel:(HomeSubItemModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|