FamilyListViewCell.h 552 B

12345678910111213141516171819
  1. //
  2. // FamilyListViewCell.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/9/26.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class FamilyListViewCell;
  10. @protocol FamilyListViewCellDelegate <NSObject>
  11. - (void)applyWithFamilyListViewCell:(FamilyListViewCell *)cell;
  12. @end
  13. @class FamilyListModel;
  14. @interface FamilyListViewCell : UITableViewCell
  15. @property (nonatomic, strong) UIButton * applyBtn;
  16. @property (nonatomic, strong) FamilyListModel * model;
  17. @property (nonatomic, weak) id<FamilyListViewCellDelegate>delegate;
  18. @end