SocietyListCell.h 533 B

12345678910111213141516171819
  1. //
  2. // SocietyListCell.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 SocietyListCell;
  10. @protocol SocietyListCellDelegate <NSObject>
  11. - (void)applyWithSocietyListCell:(SocietyListCell *)cell;
  12. @end
  13. @class SocietyListModel;
  14. @interface SocietyListCell : UITableViewCell
  15. @property (nonatomic, strong) UIButton * applyBtn;
  16. @property (nonatomic, strong) SocietyListModel * model;
  17. @property (nonatomic, weak) id<SocietyListCellDelegate>delegate;
  18. @end