1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // HCNineNineTableViewCell.h
- // hc
- //
- // Created by xiaoxi on 2018/1/17.
- // Copyright © 2018年 hc. All rights reserved.
- //
- #import "HCTableViewCell.h"
- #import "HCCollectionViewCell.h"
- #import "HCNineNineModel.h"
- @protocol YHNineNineTableViewCellDelegate,YHNineNineTableCollectionViewCellDelegate;
- @interface YHNineNineTableCollectionViewCell : HCCollectionViewCell
- @property (nonatomic, weak) id<YHNineNineTableCollectionViewCellDelegate> delegate;
- @property (nonatomic, strong) CALayer *pictureLayer;
- @property (nonatomic, strong) UILabel *topLabel;
- @property (nonatomic, strong) UILabel *bottomLabel;
- @property (nonatomic, strong) YHNineNineMiddleCollectionModel *model;
- @end
- @protocol YHNineNineTableCollectionViewCellDelegate <NSObject>
- @optional
- @end
- @interface HCNineNineTableViewCell : HCTableViewCell
- @property (nonatomic, weak) id<YHNineNineTableViewCellDelegate> delegate;
- @property (nonatomic, strong) CALayer *bottomLine;
- @property (nonatomic, strong) UILabel *leftLabel;
- @property (nonatomic, strong) UILabel *rightLabel;
- @property (nonatomic, strong) UIImageView *rightImageView;
- @property (nonatomic, strong) UICollectionView *collectionView;
- @property (nonatomic, strong) YHNineNineMiddleModel *model;
- @end
- @protocol YHNineNineTableViewCellDelegate <NSObject>
- @optional
- - (void)yh_NineNineTableViewCellDidSelectItem:(YHNineNineMiddleModel *)model;
- @end
|