1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // YZMANineNineTableViewCell.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/17.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "YZMATableViewCell.h"
- #import "YZMACollectionViewCell.h"
- #import "YZMANineNineModel.h"
- @protocol YHNineNineTableViewCellDelegate,YHNineNineTableCollectionViewCellDelegate;
- @interface YHNineNineTableCollectionViewCell : YZMACollectionViewCell
- @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 YZMANineNineTableViewCell : YZMATableViewCell
- @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
|