SocietyMemberCell.h 677 B

12345678910111213141516171819202122
  1. //
  2. // SocietyMemberCell.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/1/22.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class SocietyMemberCell;
  10. @protocol SocietyMemberCellDelegate <NSObject>
  11. - (void)kickOutWithSocietyMemberCell:(SocietyMemberCell *)cell;
  12. @end
  13. @class SocietyMemberModel;
  14. @interface SocietyMemberCell : UITableViewCell
  15. @property (nonatomic, strong) UIView *lineView;
  16. @property (nonatomic, assign) int isSocietyHeader;
  17. @property (nonatomic, weak) id<SocietyMemberCellDelegate>delegate;
  18. + (instancetype)cellWithTableView:(UITableView *)tableView;
  19. - (void)creatCellWithModel:(SocietyMemberModel *)model WithRow:(int)row;
  20. @end