| 12345678910111213141516171819 |
- //
- // ShopCartCellDelegate.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/19.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "ShopCartItemModel.h"
- @class CartTableViewCell;
- @protocol ShopCartCellDelegate <NSObject>
- @optional
- -(void)showCartInfoDetail:(int)index;//出示购物车明细
- -(void) btnCheckPressed:(CartTableViewCell *)cell;//chekbox
- -(void) alertMessage:(NSString*)message;//警告信息回调
- -(void)textValueChange:(CartTableViewCell*)cell txtField:(UITextField*)txtfield;//文本变化监听
- -(void)deleteOrderItem:(ShopCartItemModel*)cartItem;//删除购物车
- @end
|