SocietyLeaveApplyCell.h 731 B

12345678910111213141516171819202122
  1. //
  2. // SocietyLeaveApplyCell.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 SocietyLeaveApplyCell;
  10. @protocol SocietyLeaveApplyCellDelegate <NSObject>
  11. - (void)agreeQuitWithSocietyLeaveApplyCell:(SocietyLeaveApplyCell *)cell;
  12. - (void)refuseQuitWithSocietyLeaveApplyCell:(SocietyLeaveApplyCell *)cell;
  13. @end
  14. @class SocietyMemberModel;
  15. @interface SocietyLeaveApplyCell : UITableViewCell
  16. @property (nonatomic, strong) UIView *lineView;
  17. @property (nonatomic, weak) id<SocietyLeaveApplyCellDelegate>delegate;
  18. + (instancetype)cellWithTableView:(UITableView *)tableView;
  19. - (void)creatCellWithModel:(SocietyMemberModel *)model WithRow:(int)row;
  20. @end