1234567891011121314151617181920212223 |
- //
- // CarCell.h
- // jiaPeiC
- //
- // Created by apple on 15/12/23.
- // Copyright © 2015年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CarCell : UITableViewCell
- {
- UILabel *lblSname,*lblCtype,*titSname;
- }
- @property(nonatomic,strong) NSDictionary* model;
- +(id)cellForTabelView:(UITableView*)tableView;
- @end
- CGFloat CarCellHeight(void);
|