| 12345678910111213141516171819202122232425 |
- //
- // RAEditSignatureCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/9/4.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RAEditSignatureModel,RAEditSignatureCell;
- @protocol RAEditSignatureCellDelegate <NSObject>
- - (void)signatureCell:(RAEditSignatureCell *)cell tapSignature:(RAEditSignatureModel *)model;
- @end
- @interface RAEditSignatureCell : UITableViewCell
- @property (nonatomic,strong) RAEditSignatureModel *model;
- @property (nonatomic,weak) id<RAEditSignatureCellDelegate> delegate;
- @end
|