// // HCCommunityCell.h // hc // // Created by hc on 2018/5/16. // Copyright © 2018年 hc. All rights reserved. // #import #import "HCCommunityModel.h" #import "PhotoContainerView.h" @protocol YHCommunityDelegate @optional -(void)oneTouchShareWithModel:(HCCommunityModel *)model; @end @interface HCCommunityCell : UITableViewCell + (instancetype)cellWithTableView:(UITableView *)tableView; @property (nonatomic, strong) HCCommunityModel *model; @property (nonatomic, weak ) id delegate; @property (nonatomic, strong) PhotoContainerView *picContainerView; @end