RAEditSignatureCell.h 552 B

12345678910111213141516171819202122232425
  1. //
  2. // RAEditSignatureCell.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/9/4.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class RAEditSignatureModel,RAEditSignatureCell;
  10. @protocol RAEditSignatureCellDelegate <NSObject>
  11. - (void)signatureCell:(RAEditSignatureCell *)cell tapSignature:(RAEditSignatureModel *)model;
  12. @end
  13. @interface RAEditSignatureCell : UITableViewCell
  14. @property (nonatomic,strong) RAEditSignatureModel *model;
  15. @property (nonatomic,weak) id<RAEditSignatureCellDelegate> delegate;
  16. @end