NewCustomReceiptCell.h 705 B

123456789101112131415161718192021222324252627282930
  1. // NewCustomerModel.h
  2. // IOBSS 2.0
  3. //
  4. // Created by 刘瀚璘 on 2017.7.14
  5. // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
  6. //
  7. // 系统名称:
  8. // 功能描述:新增定制品列表Cell
  9. #import <UIKit/UIKit.h>
  10. #import "NewCustomerModel.h"
  11. @protocol NewCustomReceiptCellDelegate <NSObject>
  12. - (void) cellTextFieldDidEndEditing:(UITextField *)textField;
  13. - (void)cellTextFieldDidBeginEditing:(UITextField *)textField;
  14. @end
  15. @interface NewCustomReceiptCell : UITableViewCell<UITextFieldDelegate>
  16. /**
  17. 数据源
  18. */
  19. @property (nonatomic,strong) NewCustomerModel *model;
  20. @property (nonatomic,strong)id<NewCustomReceiptCellDelegate> delegate;
  21. - (void) loadCell;
  22. @end