1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // 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<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 KBNineNineTableViewCell : KBTableViewCell
- @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
|