NewRepairDetailListsCellDelegate.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // NewRepairDetailListsCellDelegate.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/19.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:新增维修回执代理类
  9. #import <Foundation/Foundation.h>
  10. @class NewRepairDetailListsCell;
  11. @protocol NewRepairDetailListsCellDelegate <NSObject>
  12. @optional
  13. /**
  14. 出示维修信息明细
  15. @param index <#index description#>
  16. */
  17. - (void)showRepairtInfoDetail:(int)index;
  18. /**
  19. 文本值变化回调
  20. @param cell <#cell description#>
  21. @param txtfield <#txtfield description#>
  22. @param qualityTxt <#qualityTxt description#>
  23. @param remark <#remark description#>
  24. */
  25. - (void)textValueChange:(NewRepairDetailListsCell*)cell txtField:(UITextField*)txtfield qualityField:(UITextField*)qualityTxt remarkField:(UITextField*)remark ;
  26. /**
  27. 开始编辑回调
  28. @param cell <#cell description#>
  29. */
  30. - (void)beginEdit:(NewRepairDetailListsCell *)cell;
  31. /**
  32. 结束编辑回调
  33. @param cell <#cell description#>
  34. */
  35. - (void)endEdit:(NewRepairDetailListsCell *)cell;
  36. /**
  37. 到铺贴方式
  38. @param cell <#cell description#>
  39. */
  40. - (void)btnGoPayStyle:(NewRepairDetailListsCell *)cell;
  41. /**
  42. 到回执类型
  43. @param cell <#cell description#>
  44. */
  45. - (void)btnGoReceiptType:(NewRepairDetailListsCell *)cell;
  46. /**
  47. 弹出键盘
  48. @param cell <#cell description#>
  49. */
  50. - (void)keyboardWillShow:(NewRepairDetailListsCell *)cell;
  51. /**
  52. 隐藏键盘
  53. @param cell <#cell description#>
  54. */
  55. - (void)keyboardWillHide:(NewRepairDetailListsCell *)cell;
  56. @end