| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // OrderAuditListCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2018/11/13.
- // Copyright © 2018 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OrderAuditListModel.h"
- @protocol OrderAuditTableViewCellDelegate <NSObject>
- @optional
- - (void) btnCheckPressed:(NSInteger)pos;
- @end
- @interface OrderAuditListCell : UITableViewCell
- @property(nonatomic,strong) UIButton *btnCheck;
- @property(nonatomic,assign) NSInteger position;
- @property (weak) id<OrderAuditTableViewCellDelegate> delegate;
- - (void)setOrderAuditCell:(OrderAuditListModel *)auditListModel;
- /**
- 购物车checkbox切换函数
-
- @param checked <#checked description#>
- */
- - (void) setCheckBackground: (BOOL) checked;
- @end
|