NewDeliveryKeyBoardDelegate.h 1.5 KB

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