| 123456789101112131415161718192021222324252627 |
- //
- // RAEditScanInputCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/4.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RAEditInputModel,RAEditScanInputCell;
- @protocol RAEditInputDelegate <NSObject>
- - (void)beginEditInputCell:(RAEditScanInputCell *)cell;
- - (void)endEditInputCell:(RAEditScanInputCell *)cell;
- - (void)scanInputCell:(RAEditScanInputCell *)cell clickScanButton:(UIButton *)sender;
- @end
- @interface RAEditScanInputCell : UITableViewCell
- @property (nonatomic,strong) RAEditInputModel *model;
- @property (nonatomic,weak) id<RAEditInputDelegate> delegate;
- @end
|