口袋优选

KBNineNineTableViewCell.h 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // KBNineNineTableViewCell.h
  3. // YouHuiProject
  4. //
  5. // Created by xiaoxi on 2018/1/17.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "KBTableViewCell.h"
  9. #import "KBCollectionViewCell.h"
  10. #import "KBNineNineModel.h"
  11. @protocol YHNineNineTableViewCellDelegate,YHNineNineTableCollectionViewCellDelegate;
  12. @interface YHNineNineTableCollectionViewCell : KBCollectionViewCell
  13. @property (nonatomic, weak) id<YHNineNineTableCollectionViewCellDelegate> delegate;
  14. @property (nonatomic, strong) CALayer *pictureLayer;
  15. @property (nonatomic, strong) UILabel *topLabel;
  16. @property (nonatomic, strong) UILabel *bottomLabel;
  17. @property (nonatomic, strong) YHNineNineMiddleCollectionModel *model;
  18. @end
  19. @protocol YHNineNineTableCollectionViewCellDelegate <NSObject>
  20. @optional
  21. @end
  22. @interface KBNineNineTableViewCell : KBTableViewCell
  23. @property (nonatomic, weak) id<YHNineNineTableViewCellDelegate> delegate;
  24. @property (nonatomic, strong) CALayer *bottomLine;
  25. @property (nonatomic, strong) UILabel *leftLabel;
  26. @property (nonatomic, strong) UILabel *rightLabel;
  27. @property (nonatomic, strong) UIImageView *rightImageView;
  28. @property (nonatomic, strong) UICollectionView *collectionView;
  29. @property (nonatomic, strong) YHNineNineMiddleModel *model;
  30. @end
  31. @protocol YHNineNineTableViewCellDelegate <NSObject>
  32. @optional
  33. - (void)yh_NineNineTableViewCellDidSelectItem:(YHNineNineMiddleModel *)model;
  34. @end