新UI马甲包

HCCommunityCell.h 626B

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