SocietyMemberApplyCell.h 733 B

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