detailTableViewCell.h 367 B

123456789101112131415161718
  1. //
  2. // detailTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by lxt2016 on 16/11/29.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface detailTableViewCell : UITableViewCell
  10. @property (nonatomic, strong) UILabel *detailLabel;
  11. @property (nonatomic, strong) UIView *lineView;
  12. - (CGFloat)setCellWithString:(NSString *)string;
  13. @end