线上所有马甲包模板,与《猎豆》同UI。域名zhuadd

HSQCommunityCell.h 752B

123456789101112131415161718192021222324
  1. //
  2. // HSQCommunityCell.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 "HSQCommunityModel.h"
  10. #import "PhotoContainerView.h"
  11. #import "HSQCommunityDetailModel.h"
  12. @protocol YHCommunityDelegate<NSObject>
  13. @optional
  14. -(void)oneTouchShareWithModel:(HSQCommunityDetailModel *)model;
  15. @end
  16. @interface HSQCommunityCell : UITableViewCell
  17. + (instancetype)cellWithTableView:(UITableView *)tableView;
  18. @property (nonatomic, copy) void (^shareClick)(void);
  19. @property (nonatomic, strong) HSQCommunityDetailModel *model;
  20. @property (nonatomic, weak ) id<YHCommunityDelegate> delegate;
  21. @property (nonatomic, strong) PhotoContainerView *picContainerView;
  22. @end