// // KBNineNineTableViewCell.h // YouHuiProject // // Created by xiaoxi on 2018/1/17. // Copyright © 2018年 kuxuan. All rights reserved. // #import "KBTableViewCell.h" #import "KBCollectionViewCell.h" #import "KBNineNineModel.h" @protocol YHNineNineTableViewCellDelegate,YHNineNineTableCollectionViewCellDelegate; @interface YHNineNineTableCollectionViewCell : KBCollectionViewCell @property (nonatomic, weak) id delegate; @property (nonatomic, strong) CALayer *pictureLayer; @property (nonatomic, strong) UILabel *topLabel; @property (nonatomic, strong) UILabel *bottomLabel; @property (nonatomic, strong) YHNineNineMiddleCollectionModel *model; @end @protocol YHNineNineTableCollectionViewCellDelegate @optional @end @interface KBNineNineTableViewCell : KBTableViewCell @property (nonatomic, weak) id 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 @optional - (void)yh_NineNineTableViewCellDidSelectItem:(YHNineNineMiddleModel *)model; @end