OrderAuditListCell.h 715 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // OrderAuditListCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2018/11/13.
  6. // Copyright © 2018 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "OrderAuditListModel.h"
  10. @protocol OrderAuditTableViewCellDelegate <NSObject>
  11. @optional
  12. - (void) btnCheckPressed:(NSInteger)pos;
  13. @end
  14. @interface OrderAuditListCell : UITableViewCell
  15. @property(nonatomic,strong) UIButton *btnCheck;
  16. @property(nonatomic,assign) NSInteger position;
  17. @property (weak) id<OrderAuditTableViewCellDelegate> delegate;
  18. - (void)setOrderAuditCell:(OrderAuditListModel *)auditListModel;
  19. /**
  20. 购物车checkbox切换函数
  21. @param checked <#checked description#>
  22. */
  23. - (void) setCheckBackground: (BOOL) checked;
  24. @end