| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- //
- // NewDeliveryDelegate.h
- // IBOSS
- //
- // Created by Dongke on 16/2/22.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:新增配送键盘代理
- @class NewDeliveryListTableViewCell;
- #import <Foundation/Foundation.h>
- @protocol NewDeliveryKeyBoardDelegate <NSObject>
- @optional
- /**
- 出示配送信息明细
- @param index <#index description#>
- */
- - (void)showDeliveryInfoDetail:(int)index;
- /**
- 文本值变化
- @param cell <#cell description#>
- @param txtfield <#txtfield description#>
- @param qualityTxt <#qualityTxt description#>
- @param remark <#remark description#>
- */
- - (void)textValueChange:(NewDeliveryListTableViewCell*)cell txtField:(UITextField*)txtfield qualityField:(UITextField*)qualityTxt remarkField:(UITextField*)remark ;
- /**
- 开始编辑
- @param cell <#cell description#>
- */
- - (void)beginEdit:(NewDeliveryListTableViewCell *)cell;
- /**
- 结束编辑
- @param cell <#cell description#>
- */
- - (void)endEdit:(NewDeliveryListTableViewCell *)cell;
- /**
- 到铺贴方式
- @param cell <#cell description#>
- */
- - (void)btnGoPayStyle:(NewDeliveryListTableViewCell *)cell;
- /**
- 到回执类型
- @param cell <#cell description#>
- */
- - (void)btnGoReceiptType:(NewDeliveryListTableViewCell *)cell;
- /**
- 弹出键盘事件
- @param cell <#cell description#>
- */
- - (void)keyboardWillShow:(NewDeliveryListTableViewCell *)cell;
- /**
- 隐藏键盘事件
- @param cell <#cell description#>
- */
- - (void)keyboardWillHide:(NewDeliveryListTableViewCell *)cell;
- @end
|