FamilyListCell.h 646 B

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