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