ShopCartCellDelegate.h 651 B

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