口袋优选

KBCommunityCell.h 645B

12345678910111213141516171819202122
  1. //
  2. // KBCommunityCell.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/16.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KBCommunityModel.h"
  10. #import "PhotoContainerView.h"
  11. @protocol YHCommunityDelegate<NSObject>
  12. @optional
  13. -(void)oneTouchShareWithModel:(KBCommunityModel *)model;
  14. @end
  15. @interface KBCommunityCell : UITableViewCell
  16. + (instancetype)cellWithTableView:(UITableView *)tableView;
  17. @property (nonatomic, strong) KBCommunityModel *model;
  18. @property (nonatomic, weak ) id<YHCommunityDelegate> delegate;
  19. @property (nonatomic, strong) PhotoContainerView *picContainerView;
  20. @end