LinesSelectCell.h 537 B

123456789101112131415161718
  1. //
  2. // LinesSelectCell.h
  3. // LRSChartView
  4. //
  5. // Created by lihaiyang on 2018/10/23.
  6. // Copyright © 2018 lihaiyang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface LinesSelectCell : UITableViewCell
  10. @property(nonatomic ,assign)CGFloat leftWidth;
  11. @property(nonatomic ,assign)CGFloat rightWith;
  12. -(void)showTitle:(NSString *)title andTitleColor:(UIColor *)titleColor andTitleFont:(UIFont *)titleFont andDescTile:(NSString *)descTitle andDescTileColor:(UIColor *)descTileColor andDescTitleFont:(UIFont *)DescTitleFont;
  13. @end