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