// // SocietyMemberCell.h // BuguLive // // Created by 王珂 on 17/1/22. // Copyright © 2017年 xfg. All rights reserved. // #import @class SocietyMemberCell; @protocol SocietyMemberCellDelegate - (void)kickOutWithSocietyMemberCell:(SocietyMemberCell *)cell; @end @class SocietyMemberModel; @interface SocietyMemberCell : UITableViewCell @property (nonatomic, strong) UIView *lineView; @property (nonatomic, assign) int isSocietyHeader; @property (nonatomic, weak) iddelegate; + (instancetype)cellWithTableView:(UITableView *)tableView; - (void)creatCellWithModel:(SocietyMemberModel *)model WithRow:(int)row; @end