// // SocietyListCell.h // BuguLive // // Created by 王珂 on 17/1/22. // Copyright © 2017年 xfg. All rights reserved. // #import @class SocietyListCell; @protocol SocietyListCellDelegate - (void)applyWithSocietyListCell:(SocietyListCell *)cell; @end @class SocietyListModel; @interface SocietyListCell : UITableViewCell @property (nonatomic, strong) UIButton * applyBtn; @property (nonatomic, strong) SocietyListModel * model; @property (nonatomic, weak) iddelegate; @end