12345678910111213141516171819202122 |
- //
- // CLCell.h
- // jiaPei
- //
- // Created by apple on 15/11/25.
- // Copyright (c) 2015年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CLCell : UITableViewCell
- /**左边距
- */
- @property(assign)CGFloat leftBd;
- @property (nonatomic, retain) UIImageView *headerImg;
- +(CLCell*)cellForTableView:(UITableView*)tableView Style:(UITableViewCellStyle)style;
- +(CGFloat)cellHeight;
- @end
|