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