MemberApplyCell.h 662 B

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