CLCell.h 402 B

12345678910111213141516171819202122
  1. //
  2. // CLCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 15/11/25.
  6. // Copyright (c) 2015年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CLCell : UITableViewCell
  10. /**左边距
  11. */
  12. @property(assign)CGFloat leftBd;
  13. @property (nonatomic, retain) UIImageView *headerImg;
  14. +(CLCell*)cellForTableView:(UITableView*)tableView Style:(UITableViewCellStyle)style;
  15. +(CGFloat)cellHeight;
  16. @end