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