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