// // FamilyListCell.h // BuguLive // // Created by fanwe2014 on 16/6/18. // Copyright © 2016年 xfg. All rights reserved. // #import @class FamilyListCell; @protocol FamilyListCellDelegate - (void)kickOutWithFamilyListCell:(FamilyListCell *)cell; @end @class SenderModel; @interface FamilyListCell : UITableViewCell @property (nonatomic, strong) UIView *lineView; @property (nonatomic, assign) int isFamilyHeader; @property (nonatomic, weak) iddelegate; + (instancetype)cellWithTableView:(UITableView *)tableView; - (void)creatCellWithModel:(SenderModel *)model WithRow:(int)row; @end