SheetViewCell.h 485 B

1234567891011121314151617
  1. //
  2. // SheetViewCellTableViewCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/3/30.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "InvoiceStyle.h"
  10. #import "NSString+Tools.h"
  11. #define kTextFont [UIFont systemFontOfSize:14]
  12. @interface SheetViewCell : UITableViewCell
  13. @property(nonatomic,strong) InvoiceStyle *invoiceStyle;
  14. @property(nonatomic,strong) UILabel *invoiceStyleLbl;
  15. - (void)setInvoiceStyle:(InvoiceStyle *)style;
  16. @end